Unable to remove cart from header in Concept theme

Unable to remove cart from header in Concept theme. I’ve made several attempts trying different solutions in this forum, but none have worked.

Thanks,
Larry

Hey @LarryENET

Can you share your store URL and what solutions you’ve already tried? That way I won’t suggest the same things and can look at your specific setup.

Also, are you trying to hide the cart icon completely or just remove the cart drawer/popup?

You can try to add this code to Custom CSS in Theme settings and check

.header__icons .cart-drawer-button,
.header__icons a[href*="/cart"] {
  display: none !important;
}

Hi @LarryENET,

I an understand you. Theme code can be super stubborn sometimes!

Since the standard forum fixes aren’t working, it usually means the theme’s JavaScript is forcing the cart to stay put, or the code is hidden in a different file (like header.liquid or a predictive search snippet).

Two quick things you can try right now:

  • The CSS Trick: Go to your Theme Settings > Custom CSS and paste this to hide it: .header__cart { display: none !important; } (Note: You might need to change .header__cart to whatever your theme’s exact cart class name is).
  • The Section Settings: Double-check under Online Store > Customize > Header. Some versions of Concept have a simple checkbox to toggle header elements.

If those don’t work, could you share a link to your website? I’d love to take a quick look at the live code for you to see exactly what’s blocking it.

Hope this helps,

Hey @LarryENET

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Hi @LarryENET
In the Concept theme, this is typically managed in the theme editor rather than requiring more advanced modifications. Go to Online Store theme editor and open Header settings to see if you have cart icon or cart drawer toggle options, as some themes allow you to disable it straight there. Where this isn’t the case you can still hide your cart icon with a small CSS override on the header cart element in your main style sheet in base.css or theme.css. Alternatively, you can duplicate your theme and modify the header liquid snippet so you keep your updates safe.

just paste this code in theme.css or base.css

.header__cart,
.header__icon–cart,
a[href=“/cart”].header__icon {
display: none !important;
}

I added css code to remove Add to Cart from each part in my store. We are not selling through the website. I just received an order for parts which are showing all free with a Total of $0.00. I was told by a co-worker that they could be using a bot to look at source code and that is how they were able to make an order. How can I fix that?