I’m using the ICON theme and want to remove the prices from the collections page. The prices would still be see on the product pages, but not in the collections pages.
Does anyone know how to change this?
I’m using the ICON theme and want to remove the prices from the collections page. The prices would still be see on the product pages, but not in the collections pages.
Does anyone know how to change this?
Hello @bnovak87 ,
.template-collection .price.price--listing {
display: none;
}
Thanks
Thanks Guleria. That works BUT I also want to NOT show the prices in the featured collection on the homepage. I thought these involve the same coding, but the prices are still showing on the homepage. How do I remove the prices on the featured collection too?
Thanks!
Use this css
.template-index .price.price--listing {
display: none;
}
Thanks
@Guleria That worked perfectly. Thanks!!!