How to remove Shipping from Woocommerce cart? [closed]

给你一囗甜甜゛ 提交于 2020-01-09 10:53:12

问题


I have one question. I need remove shipping and shipping calculate from cart. Its possible delete with hooks? I am newbie in this.

Template is: http://flatsome.uxthemes.com/cart/

I'll be glad for any advice. Thanks.

Cart Woocommmerce


回答1:


Add the following snippet on your 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 );



回答2:


Can you please follow below steps?

Step 1 - There’s actually a setting for this: disable it under WooCommerce > Shipping

Step 2 - Uncheck "Enable the shipping calculator on the cart page"



来源:https://stackoverflow.com/questions/37304801/how-to-remove-shipping-from-woocommerce-cart

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!