gpt4 book ai didi

php - 如何修改 Woocommerce 运输标签

转载 作者:行者123 更新时间:2023-12-02 04:09:27 31 4
gpt4 key购买 nike

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

谁能推荐一种方法来做到这一点?

最佳答案

您可以使用 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;
}

关于php - 如何修改 Woocommerce 运输标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37511363/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com