How to hide shipping cost on cart page ?
-
Hello, I would like to ask how I could hide the shipping price calculation on the cart page?
In the woocommerce settings – shipping – I did not enable the shipping price calculation on the cart page. Nevertheless, the calculation appears there.
Thank you for the early reply
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the following snippet to your functions.php file to hide this:
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 );
Best Regards,
Thank you very much, it works :). Please, it still shows the field for surcharge for cash on delivery, would it be possible to remove that too?
Thank you for the quick reply.
Attachments:
You must be
logged in to view attached files.
Hello,
Can you please share the page URL so I can check and give you a possible solution.
Best Regards
Thank you for answer, link is in the private content below:
Hello,
I have checked your site and it is not showing.
See the screenshot for clarification: https://ibb.co/JR2t00jr
Check back on your site and check the issue. If you have any questions feel free to contact us.
Best Regards,