是否可以将 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 );
- 1 回答
- 0 关注
- 90 浏览
添加回答
举报
0/150
提交
取消