【发布时间】:2016-10-21 09:53:38
【问题描述】:
我正在尝试从运输方式标签中删除运费。
是否有一些代码可以消除成本?
谢谢。
我试过用这个方法:
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_local_pickup_free_label', 10, 2 );
function remove_local_pickup_free_label($full_label, $method){
$full_label = str_replace("USD","HKD",$full_label);
return $full_label;
}
解决方案:
add_filter( 'woocommerce_cart_shipping_method_full_label','remove_local_pickup_free_label', 10, 2 );
function remove_local_pickup_free_label($full_label, $method){
$full_label = substr( $full_label, 0, strpos( $full_label, ':'));
return $full_label;
}
【问题讨论】:
-
找到类并使用自定义 css 插件显示:无
-
它不能使用
css来删除它。由于成本与送货地址有关。如果我用css删除它,所有的地址都会被删除...
标签: wordpress woocommerce