在woocommerce 3.0的购物车页面中删除运费?

时间:2017-10-23 05:54:01

标签: php wordpress woocommerce

我想在购物车页面中排除运费,如果有的话。总计应该只显示实际的商品总数和折扣或优惠券(如果有的话)。

Please see visual example

我尝试在function.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 );

My Cart Page after above code - doesn't remove fee from total

0 个答案:

没有答案