springerdesign Posted February 15, 2022 Share Posted February 15, 2022 Site URL: https://www.springerdesign.biz/ Hi there, I have a commerce page on my site that is sort of separate from the purpose of the rest of the site. I would like to keep my commerce page going, but remove the cart icon from all of the other pages of my site. Can someone help me figure out how to do that? Thanks! -Jesse Link to comment
Solution creedon Posted February 15, 2022 Solution Share Posted February 15, 2022 Add the following to Design > Custom CSS. /* hide cart on all pages */ .Cart { display : none; } /* show cart on some pages */ .collection-type-products .Cart, /* products page */ #cart .Cart /* cart page */ { display : block; } This is for v7.0 using the Brine template family. Let us know how it goes. Find my contributions useful? Please like, upvote, mark my answer as best , and see my profile. Thanks for your support! Link to comment
springerdesign Posted February 15, 2022 Author Share Posted February 15, 2022 2 hours ago, creedon said: Add the following to Design > Custom CSS. /* hide cart on all pages */ .Cart { display : none; } /* show cart on some pages */ .collection-type-products .Cart, /* products page */ #cart .Cart /* cart page */ { display : block; } This is for v7.0 using the Brine template family. Let us know how it goes. Hi creedon, that worked brilliantly, thank you! -Jesse creedon 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment