预计阅读时间: 1 分钟

这是一件很烦人的事情。如果您的WooCommerce运送方式之一是免费,则其旁边将显示一个标签(免费)。不能通过CSS删除它,因为某些WooCommerce函数通过代码将其添加到运输方法标签中。那么我们如何停用它呢?


// removes (free) from free shipping methods
 
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_free_label', 10, 2 );
 
function remove_free_label($full_label, $method) {
$full_label = str_replace("(Free)","",$full_label);
return $full_label;
}
此文章对你有帮助吗? 已有 1 人说这篇文章是有用的。