Skip to content

Instantly share code, notes, and snippets.

@diekaines
Forked from mikejolley/gist:5568708
Created December 20, 2013 19:58
Show Gist options
  • Select an option

  • Save diekaines/8060460 to your computer and use it in GitHub Desktop.

Select an option

Save diekaines/8060460 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_product_tax_class', 'big_apple_get_tax_class', 1, 2 );
function big_apple_get_tax_class( $tax_class, $product ) {
global $woocommerce;
if ( $woocommerce->cart->subtotal <= 110 )
$tax_class = 'Zero Rate';
return $tax_class;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment