how to hide tax details from woocommerce order emails

Solutions on MaxInterview for how to hide tax details from woocommerce order emails by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "how to hide tax details from woocommerce order emails"
Mayssa
23 Sep 2019
1function njengah_change_email_tax_label( $label ) {
2
3    $label = '';
4
5    return $label;
6
7}
8
9add_filter( 'woocommerce_countries_ex_tax_or_vat', 'njengah_change_email_tax_label' );
similar questions