Can you please share links of those collection where you wanna display the prices so that I can tell you the code accordingly
Topic summary
Goal: Hide product prices on specific Shopify Debut collection pages (while keeping prices on others). Product pages were already customized to remove price and purchase buttons and add an enquiry button.
Early guidance: A suggestion to add code in theme.liquid targeted hiding prices on collection pages, but it did not clarify selective (per-collection) control, which was required.
Working solution: Add CSS to the theme’s stylesheet to hide prices only for collections using a custom template, then assign that template to the desired collections.
- CSS: #shopify-section-Hide-Price .price { display: none !important; }
- Assign the “hide-price” collection template to collections where prices must be hidden.
Outcome: The original poster confirmed this resolves their need without third‑party apps.
Open issue: Another participant reported they do not have theme.css (only theme.scss.liquid) and the approach didn’t work for them, leaving their case unresolved. This indicates file naming/placement differences may affect implementation.
Notes: Key elements are the CSS snippet and applying a specific collection template. “Collection” = product listing page; “template” = theme layout assigned per collection.