Remove "You May Also Like" From This Area - Ella Theme

Hello, I want to remove the “Other Products You May Like” section in the cart area on mobile and desktop views. I am using the Ella theme.

Can you help me with this?

Hello @kordak
would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.

Unfortunately, I do not want to send you my password due to Shopify warnings. When you add the product to your cart, it appears in the cart sidebar on the right.

Hi @kordak

You can try to find option to disable that section in your theme settings.

Or add this code to Custom CSS in Sale channels > Online Store > Themes > Customize > Theme settings.

.halo-cart-sidebar .previewCartCollection { display: none !important; }
1 Like

Hi @kordak ,

Please go to Actions > Edit code > Assets > component-quick-cart.css file and paste this at the bottom of the file:

.previewCartCollection {
    display: none;
}

“You May Also Like” is most likely an app block in your theme. If you want to hide it entirely, you can do so in the Theme Editor. I would recommend reaching out to the developers of the Ella theme for instructions about its available settings and blocks.

However, if all you want to do is hide it on certain device aspect ratios, you can use a CSS media query.