如何修改 Woocommerce 发货标签

Joh*_*sen 2 php wordpress woocommerce

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

谁能建议一种方法来做到这一点?

Mic*_*oye 5

您可以woocommerce_cart_shipping_method_full_label为此使用过滤器。

将以下代码添加到您的主题functions.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;
}
Run Code Online (Sandbox Code Playgroud)