Hello,
I am trying to remove the shopping cart icon in the header.
Here is the link to my website: https://www.closdelaclos.com/
Thanks in advance for the support.
A user seeks to remove the shopping cart icon from their Shopify store header using the Prestige theme.
Multiple CSS Solutions Provided:
Several respondents offered similar approaches using custom CSS code:
theme.liquid file before the </head> tagProposed CSS selectors include:
.header li.header__cart-link { display: none; }li.relative.header__cart-link { display: none !important; }Implementation Steps:
Alternative Approach:
One response suggests checking for a built-in toggle option in Theme Settings before editing code, or manually editing header.liquid to remove/comment out cart icon code.
Screenshots demonstrate the expected result with the cart icon hidden. The discussion remains open with no confirmed resolution from the original poster.
Hello,
I am trying to remove the shopping cart icon in the header.
Here is the link to my website: https://www.closdelaclos.com/
Thanks in advance for the support.
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
You can do that by adding this code to Custom CSS in your store admin > Sales channels > Online Store > Themes > Customize > Theme settings
.header li.header__cart-link { display: none; }
You can follow the instruction here :
Go to Shopify > Online store > theme > customize
Click to Settings > Custom CSS > Paste this code to the section and save. https://prnt.sc/Rl66N9K_Bjvs
li.relative.header__cart-link {
display: none !important;
}
Result :
Thank you.
Liz
To remove the shopping cart icon in the header of your Shopify store using the Prestige theme, you’ll need to make a small tweak in your theme’s code. Go to your Shopify Admin, then navigate to Online Store > Themes > Customize. Once there, click on Theme Settings and check if there is an option to hide the cart icon in the header (some themes provide this toggle option). If you don’t see it, you’ll need to dive into the theme code: go to Actions > Edit Code > Sections > header.liquid. Look for any code related to the cart icon (like something with cart or icon in it) and comment it out or delete it carefully