Skip to content

Instantly share code, notes, and snippets.

View mfgmk's full-sized avatar

mfgmk

View GitHub Profile
@digitalchild
digitalchild / gist:3b75a5ff599357f0a4b3
Created May 28, 2015 03:27
Vendor Commission based on Category fixed price
<?php
add_filter( 'wcv_commission_rate', 'my_wcv_commission_rate', 10, 4 );
function my_wcv_commission_rate( $commission, $product_id, $product_price, $order ) {
$terms = get_the_terms( $product_id, 'product_cat' );
// Loop through the categories
// It will break on the first category assigned
foreach ( $terms as $term ) {