Hide price on specific collection debutify theme

Topic summary

Main issue: Hide product prices only for a specific collection in the Debutify Shopify theme, specifically on the collection page’s product grid.

Proposed solution: Add a CSS rule via Theme editor > Theme settings > Custom style/script > Custom style to hide the price wrapper on the targeted collection.

Implementation details:

  • Use: #collectionNameHere .grid-product__price-wrap { display: none; }
  • Replace the text after # with the collection name; if the name has spaces, replace spaces with hyphens (e.g., “Shoes” → #shoes; “Men shoes” → #men-shoes).

References and context: Support clarified they’re targeting the product grid price on collection pages. A screenshot was provided as a reference (image attachment mentioned).

Status/outcome: A clear, CSS-based method was provided by support. No confirmation from the original poster yet; no alternative solutions or disagreements were raised.

Summarized with AI on January 30. AI used: gpt-5.

Hello
How I can hide the price on a specific collection in the debutify theme .

1 Like

that’s a good question

waiting for a solution :folded_hands:t2:

Hey

I’m assuming you mean the product price on the product grid of the collection pages.

If so, please open the theme editor > theme settings > custom style/script > custom style, and paste the following CSS.

#collectionNameHere .grid-product__price-wrap{
display:none;
}

After the hashtag(#), replace the text with the name of your collection. For example, if the collection name is “Shoes”, change it to shoes.

If the collection name has spaces, replace the space with a hyphen/minus symbol (-), for example,

if the collection is “Men shoes”, change it to #men-shoes.

Please find the screenshot as a reference.