Skip to content

Instantly share code, notes, and snippets.

@bporcelli
Created February 2, 2016 16:48
Show Gist options
  • Select an option

  • Save bporcelli/5c65b26e95383a891be1 to your computer and use it in GitHub Desktop.

Select an option

Save bporcelli/5c65b26e95383a891be1 to your computer and use it in GitHub Desktop.
function hide_cart_taxes( $enabled ) {
if ( is_checkout() ) {
return true;
} else {
return false;
}
}
add_filter( 'wc_tax_enabled', 'hide_cart_taxes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment