I need to remove shipping and shipping calculate from a cart. Is it possible to delete with hooks?
The template is: http://flatsome.uxthemes.com/cart/
I need to remove shipping and shipping calculate from a cart. Is it possible to delete with hooks?
The template is: http://flatsome.uxthemes.com/cart/
Add the following snippet to your functions.php file:
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 );
Please follow the 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"