Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-tax-on-cart-page.txt

9 lines
184 B
Text

add_action( 'wp', function() {
if ( class_exists( 'woocommerce') ) {
if ( is_cart() ) {
add_filter( 'wc_tax_enabled', '__return_false' );
}
}
});