Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created November 11, 2020 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukecav/6a37b763e0de5c8fabaf7f6ead04ed5a to your computer and use it in GitHub Desktop.
Save lukecav/6a37b763e0de5c8fabaf7f6ead04ed5a to your computer and use it in GitHub Desktop.
Hide tax on the cart page in WooCommerce
add_action( 'wp', function() {
if ( class_exists( 'woocommerce') ) {
if ( is_cart() ) {
add_filter( 'wc_tax_enabled', '__return_false' );
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment