亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在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 關注
  • 120 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號