remove price on collection page Simple theme

I am looking for help to find code to hide the price of each item in the collection section but still have the price on the individual page of each item. I am wanting customers to see each piece of art without a price tag on it and then when they click on the item specific they then can see the price after they already found interest in the piece. Is that possible? Any help would be great.

Thanks

Bryan

@bryansteward

You could use the following CSS for that:

.product.grid__item .product__prices {
  display: none;
}

I would recommend removing the prices from within the Liquid code though, but if you just want them to not display, that should do the trick.

Hope that helps!

That worked! thanks