【发布时间】:2021-04-21 10:02:28
【问题描述】:
我正在尝试仅在结帐页面上更改单选按钮的标签,而不是在购物车页面上。标签出现在两个页面上。
当我输入以下代码时,它会更改结帐页面上的标签,但会使购物车页面空白。
add_filter( 'woocommerce_cart_shipping_method_full_label', 'change_shipping_label', 10, 2 );
function change_shipping_label( $full_label, $method ){
if( ! is_checkout()) return; // Only on checkout page?
$full_label = str_replace( "Custom Carrier (Enter Details Next Page)", "Custom Carrier", $full_label );
return $full_label;
}
谁知道这是为什么?
【问题讨论】:
标签: php wordpress woocommerce checkout shipping-method