php 如何从Woocommerce电子邮件通知中删除“发货”标签?

lsmepo6l  于 2023-01-12  发布在  PHP
关注(0)|答案(1)|浏览(112)

我想从woocommerce订单确认电子邮件表中删除或隐藏“发货”标签。

dsf9zpds

dsf9zpds1#

下面的小代码片段将只删除标签“航运”,从电子邮件通知:

add_filter( 'woocommerce_get_order_item_totals', 'customize_email_order_line_totals', 1000, 3 );
function customize_email_order_line_totals( $total_rows, $order, $tax_display ){
    // Only on emails notifications
    if( ! is_wc_endpoint_url() || ! is_admin() ) {
        // Remove "Shipping" label text from totals rows
        $total_rows['shipping']['label'] = '';
    }
    return $total_rows;
}

代码进入您的活动子主题(活动主题)的function.php文件。
要从电子邮件通知中删除发货合计行,请使用以下命令:

add_filter( 'woocommerce_get_order_item_totals', 'customize_email_order_line_totals', 1000, 3 );
function customize_email_order_line_totals( $total_rows, $order, $tax_display ){
    // Only on emails notifications
    if( ! is_wc_endpoint_url() || ! is_admin() ) {
        // Remove shipping line from totals rows
        unset($total_rows['shipping']);
    }
    return $total_rows;
}

代码进入您的活动子主题(活动主题)的function.php文件。
无法针对特定的电子邮件通知。

相关问题