Last active
July 5, 2024 16:51
-
-
Save woogists/bb02074645cf28b32f367f0dc01fb171 to your computer and use it in GitHub Desktop.
Apply WooCommerce tax based on the subtotal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'woocommerce_product_get_tax_class', 'big_apple_get_tax_class', 1, 2 ); | |
function big_apple_get_tax_class( $tax_class, $product ) { | |
if ( WC()->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
Hello. Im trying to use this code on my Wordpress WooCommerce shop because im based in France but will be selling to the uk.
Unfortunately I don't know how to get it to work, I've used snippet to add it to my site but I don't really know what im doing.
Would someone be kind enough to give me some instructions on how to get this to work.
Any help is greatly appreciated.
Ben