为了账号安全,请及时绑定邮箱和手机立即绑定

如何在Woo商务电子邮件中更改电子邮件标签

如何在Woo商务电子邮件中更改电子邮件标签

PHP
呼唤远方 2022-09-17 17:49:26
是否可以将 WooCommerce 中的电子邮件标签 - “小计”和“总计”更改为其他内容?电子邮件看起来像这样
查看完整描述

1 回答

?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

正如您在这里看到的那样,要更改“发货”标签,然后您就可以获得它。


function change_email_labels( $total_rows, $order, $tax_display ) {

    // Only on emails notifications

    if( ! is_wc_endpoint_url() ) {

        $total_rows['cart_subtotal']['label'] = __( 'My text 1', 'woocommerce');

        $total_rows['order_total']['label'] = __( 'My text 2', 'woocommerce');

    }

    return $total_rows;

}

add_filter( 'woocommerce_get_order_item_totals', 'change_email_labels', 10, 3 );


查看完整回答
反对 回复 2022-09-17
  • 1 回答
  • 0 关注
  • 90 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信