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

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