是否可以將 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 關注
- 120 瀏覽
添加回答
舉報
0/150
提交
取消