仅来自产品的总计,不包括woocommerce的运费

时间:2019-11-24 12:14:12

标签: php wordpress woocommerce

我想从Woocomerce的购物车中删除运费信息。
我想要这样的东西:
商品1:900 $
产品2:900美元
总计:1800 $

没有交货信息。我试图隐藏它的优点,但它也只隐藏了我希望可见的全部产品。

1 个答案:

答案 0 :(得分:0)

在您的functions.php

上添加以下代码段
function disable_shipping_calc_on_cart( $show_shipping ) {
    if( is_cart() ) {
        return false;
    }
    return $show_shipping;
}
add_filter( 'woocommerce_cart_ready_to_calc_shipping', 'disable_shipping_calc_on_cart', 99 );