Hi I am trying to hide pricing on collection page. Any help would be much appreciated. If solved, I will buy you a coffee. ![]()
Website: https://lightbeneathmyfeet.com/
password: usacrew
A user seeks to hide product pricing on their Dawn theme collection pages for their Shopify store.
Solutions Provided:
CSS Approach (Simplest):
.card__information .price { display: none !important; }<style> tags in theme.liquid file above </body> tagLiquid Template Modification (Advanced):
{% unless show_price == false %}...{% endunless %}Outcome:
One user confirmed the CSS solution worked successfully, resolving issues with Amazon bots flagging their listings due to visible “starting at” prices on collection pages. The discussion remains open with multiple working solutions available depending on desired flexibility.
Hi I am trying to hide pricing on collection page. Any help would be much appreciated. If solved, I will buy you a coffee. ![]()
Website: https://lightbeneathmyfeet.com/
password: usacrew
Hey @Tatorchip208
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 then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @Tatorchip208 ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
.card__information .price {
display: none !important;
}
Although it is a bit troublesome, I like the following method.
Find the location where the price is displayed in card-product.liquid. Add {% unless show_price == false %}xxx{% endunless %}
Add schema in main-collection-product-grid.liquid.
and show_price: section.settings.show_price,
Finally get
This was so easy & it worked!!! I’ve been having endless issues with Amazon bots taking down my listings because they are referencing “starting at” prices from my Shopify collection pages. Thank you so much!!!