How to hide prices inside of a specific collection using the baseline theme

Hi there, I hope you’re doing well. I’ve been trying to create an artist portfolio section of my website by following this tutorial:

https://willowcheng.com/blog/how-to-add-portfolio-to-shopify-store-part-1/

The idea is to create a custom product template in which the price and add to cart buttons are removed, then create a page which displays a collection of products using this custom template. I’ve been able to successfully remove the prices from the individual product pages; however, when I am on the page where the entire collection is displayed, the prices are still listed underneath each product. I’ve tried every piece of code that I’ve found on every thread related to this question, and nothing has worked. Does anyone have any suggestion as to how I can remove the prices from the products on a collection page within the baseline theme? Thank you!

Hi @curtisreidart

For this we need a specific class name so please follow the steps to hide the prices from specific sollection

open collection-template.liquid file and add a class called {{ collection.title | handleize }}, Use this class to hide anything from your specific page,

Thanks