0
我試圖在Woocommerce表單標籤從「結算方式」,「交貨詳細信息」購物車頁Woocommerce字段標籤編輯
下面的改變已經在「我的賬戶/地址」更新這一領域頁面,但不購物車頁
//Change the Billing Address checkout label
function wc_billing_field_strings($translated_text, $text, $domain) {
switch ($translated_text) {
case 'Billing Address' :
$translated_text = __('Delivery Address', 'woocommerce');
break;
}
return $translated_text;
}
add_filter('gettext', 'wc_billing_field_strings', 20, 3);