1
在產品頁面的下拉列表中,我想要修改SELECT OPTIONS文本,並且我認爲此代碼可以對此進行更改,但即使我爲空緩存,我的頁面也沒有任何更改。 感謝您的幫助Woocommerce在變量產品頁面中更改「Select option」文本
add_filter('woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text');
function custom_woocommerce_product_add_to_cart_text() {
global $product;
$product_type = $product->product_type;
switch ($product_type) {
case 'variable':
return __('Options', 'woocommerce');
break;
}
}