【发布时间】:2016-03-20 13:35:18
【问题描述】:
我正在使用 Woocommerce 销售服务,并已使用 sn-p 在结帐时启用送货地址,效果很好。
为了避免结帐时出错,我必须启用免费送货。我不希望在购物车和结帐页面上显示 Shipping: Free Shipping 标签。尝试使用以下 sn-p,但它不起作用。请帮忙。
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_shipping_label', 10, 2 );
function remove_shipping_label( $label, $method ) {
$new_label = preg_replace( '/^.+:/', '', $label );
return $new_label;
}
【问题讨论】:
-
如果您销售服务,为什么需要送货地址?我不确定我是否理解。
-
该服务涉及发送包裹。
标签: wordpress woocommerce