如何修改Woocommerce运输标签



我正在创建一个Wordpress Woocommerce网站。我需要让国际统一费率运输说"致电我们以获取费率"而不是"国际运输(免费)"。我可以在管理端更改更新此文本的唯一值是添加价格。无法添加标签或更改价格或自由文本。

谁能提出一种方法来做到这一点?

您可以使用woocommerce_cart_shipping_method_full_label过滤器。

将以下代码添加到主题函数中.php(最好是子主题)

add_filter( 'woocommerce_cart_shipping_method_full_label', 'change_shipping_label', 10, 2 );
function change_shipping_label( $full_label, $method ){
    $full_label = str_replace( "International Shipping (Free)", "Call Us For Rates", $full_label );
    return $full_label;
}

最新更新