Remove prices for products on a specific collection page only. Dawn theme version 11

Topic summary

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:

  • Add custom code to theme.liquid file above the </body> tag
  • Code uses Liquid logic to check if product belongs to the “dog-car-seats” collection handle
  • If match found, CSS hides the price element

Issue 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.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

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:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. 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??

Thanks again for your help!

This removes the price in the individual product level.