Remove cart summary when I add product to cart dawn theme

Hi,

for website ionianboat2boat.services

password 1

everytime I add a product to cart it opens a cart summary, how can I remove this? I want to add to cart but to not open the cart page everytime I add a product to cart. Thank you

Hi @urbantis

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

#cart-notification {
    display: none !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Hello @urbantis

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.header-wrapper:not(.header-wrapper--border-bottom)+cart-notification .cart-notification {
    display: none !important;
}