i want to hide prices on collection page
https://hurra.qa/collections/grand-espira
Topic summary
A user seeks to hide product prices on their Shopify collection page. Multiple developers provide CSS-based solutions with similar approaches:
Primary Solutions Offered:
- Add custom CSS targeting
.price-listwithdisplay: none !important; - Insert code snippets in either
theme.liquidfile (above</body>or</head>tags),base.cssfile, or theme’s Custom CSS settings
Implementation Methods:
- Via Theme Customizer: Online Store > Themes > Customize > Custom CSS
- Via Code Editor: Online Store > Themes > Edit Code > locate
theme.liquidorbase.css
Key Technical Detail:
All solutions use CSS to hide the price element (.price-list or .collection__results .price-list) from displaying on collection pages.
The discussion remains open with no confirmed resolution from the original poster. Multiple respondents include screenshots showing expected results after applying their code.
Hi @Emiway1
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
.price-list { display: none !important; }
Hey @Emiway1
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @Emiway1
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.collection__results .price-list {
display: none;
}
@Emiway1 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above
Result:
If it helps you, please like and mark it as the solution.
Best Regards ![]()
Hi @Emiway1 Please add the below code:
Please follow the steps:
- Login in shopify admin.
- Click on the Online Store.
- Then click on the button next to Customize in live Theme.
- Click Edit Code.
- Search theme.liquid in the code in left hand side in your theme.
- Add the following code in the bottom of the file above tag
Result:
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil




