我想隐藏或删除WooCommerce订单电子邮件中的增值税(税)行。结果来自此函数" get_order_item_totals()"。我已经可以使用以下代码隐藏电子邮件中的税号。
function sv_change_email_tax_label( $label ) {
$label = '';
return $label;
}
add_filter( 'woocommerce_countries_tax_or_vat', 'sv_change_email_tax_label' );
我想从订单电子邮件中隐藏整行增值税。
答案 0 :(得分:0)
根据订单的状态,您需要编辑相关的电子邮件模板。
例如:如果您启用了COD付款方式且客户选择了该选项,则订单状态为"正在处理",在这种情况下,您需要修改customer-processing-order.php
模板。
//find this line and after it add the following line of code
foreach ( $totals as $total ) {
//ensure to change "VAT" with the label that appears on your email
if( strstr( $total['label'], "VAT" ) ) continue;