Answers for "How to hide tax details from woocommerce order emails"

PHP
0

How to hide tax details from woocommerce order emails

function njengah_change_email_tax_label( $label ) {

    $label = '';

    return $label;

}

add_filter( 'woocommerce_countries_ex_tax_or_vat', 'njengah_change_email_tax_label' );
Posted by: Guest on August-08-2021

Code answers related to "How to hide tax details from woocommerce order emails"

Browse Popular Code Answers by Language