That was a mission with the new Dawn theme 15.0.2 I had to inspect the source code for my products page to determine the exact code to use to remove pricing.
This will remove the pricing from all your products on the collections page. Best practice is to make a copy of your current theme incase something goes wrong and test it.
- Access the theme code by going to your Shopify admin and selecting “Online Store” and then “Themes.”
- From the theme list, find the “Actions” button for the Dawn theme and select “Edit code.”
- Expand the assets folder or search Base.CSS
- Scroll to the bottom of the page and paste the following code
.card-information .price {
display: none !important;
}
I hope this works for your pages.