How can I remove the mini cart from my ecommerce website?

Hey, I need help because I would like to remove the “mini cart” from my shopify website (" votre panier est vide")
link : https://structureparis.com
password : cewleu
thanks

Hii, @andrew133
Paste this code on top of the style.scss file.

.cart-container {
    display: none !important;
}

Thank You.

Thanks for your help, but this command delete the cart. I just want to delete the preview. Not the cart.

@andrew133

Please add the following code at the bottom of your assets/styles.scss.liquid file.

.cart_container .cart_content {
    display: none !important;
}

@andrew133
Can you give me a screenshot?
Thank You.

don’t work.. the preview is still here

I would like to delete this preview of my current cart.

@andrew133
Paste this code on top of the style.scss file.

.tos_warning.cart_content.animated.fadeIn {
    display: none !important;
}

Thank You.

1 Like