Remove price off shop page but not the product itself

Hi,

I am wanting to remove the prices of my products just when you browse on the shop page. But when you click on the product to see more the price will be there.

I have seen similar solutions but it removes the prices completely from everywhere.

Any tips on how to just hide prices on the shop page only?

My website: psycoskate.com

Here is a very similar website to mine that has the prices removed from the shop page as I mentioned. https://faworldentertainment.com/collections/frontpage

Hi @turtleshorts

Please add the following code to your theme.scss file towards the bottom:

p.grid-link__meta {
    display: none;
}

That should do it, let us know!

Thank you!!!