wordpress 如何在WooCommerce结账中更改交付方式的文本?[副本]

hivapdat  于 2023-08-03  发布在  WordPress
关注(0)|答案(1)|浏览(123)

此问题在此处已有答案

Change wc_cart_totals_shipping_method_label function in Woocommerce(1个答案)
How can I modify a Woocommerce shipping label(1个答案)
28天前关闭。
如何在结账时更改送货方式的文本?我想完全删除交货方式的文本,以便只保留交货方式的价格。通过WooCommerce设置,我没有留下没有名称的交付方式。


的数据

aor9mmx1

aor9mmx11#

要在WooCommerce购物车中修改运输方法的标签,您可以使用woocommerce_cart_shipping_method_full_label过滤器钩子。此挂钩允许您根据特定条件自定义标签。例如,您可以检查运输价格是否大于零,然后删除原始标签并将其替换为运输价格。要实现这一点,您需要将提供的代码片段添加到活动WordPress主题的functions.php文件中。

add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_delivery_method_label', 10, 2 );
function remove_delivery_method_label( $label, $method ) {
    if ( $method->cost > 0 ) {
        $label = '';
        $label .= wc_price( $method->cost );
    }
    return $label;
}

字符串


的数据


相关问题