Home Forums WoodMart support forum How to hide shipping cost on cart page ?

How to hide shipping cost on cart page ?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #648221

    Filip
    Participant

    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.
    #648393

    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,

    #648439

    Filip
    Participant

    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.
    #648571

    Hello,

    Can you please share the page URL so I can check and give you a possible solution.

    Best Regards

    #648593

    Filip
    Participant

    Thank you for answer, link is in the private content below:

    #648759

    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,

Viewing 6 posts - 1 through 6 (of 6 total)