I want to remove prices for products on a specific collection(Dog Car Seats) page only. Dawn theme version 11.
My site:
https://ec6bc3-2.myshopify.com/collections/dog-car-seats
PW
eawhup
A user wants to hide product prices on a specific collection page (“Dog Car Seats”) in Shopify’s Dawn theme version 11, while keeping prices visible elsewhere.
Initial Solution Provided:
</body> tagIssue Encountered:
The provided solution only removes prices at the individual product page level, not on the collection page itself where products are listed in a grid/catalog view.
Current Status:
The problem remains unresolved. The user still sees prices on the collection page despite implementing the suggested code. A different approach targeting the collection template (rather than product template) is likely needed to hide prices in the product listing view.
I want to remove prices for products on a specific collection(Dog Car Seats) page only. Dawn theme version 11.
My site:
https://ec6bc3-2.myshopify.com/collections/dog-car-seats
PW
eawhup
Hey @daved1234
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
{% for c in product.collections %}
{% if c.handle == "dog-car-seats" %}
{% endif %}
{% endfor %}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Thank you! I put the suggested code into the theme.liquid file all the way at the end but the prices remain??