Hello,
I have a collection called featured which is displayed on my homepage. I am using the Venue with Installments theme. I’d like to remove the price on the products displayed on the homepage (the featured collection). Any ideas on how to do this? Here’s my website: www.rarebooksleuth.com
Thanks!
1 Like
You can add the css code to hompeage
.template-index .product__details__hover {
display: none;
}
Hi @rarebooksleuth
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.home-products__grid span.product__price-price {
display: none;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!