Personalized checkout and custom promotions with Shopify Scripts
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello
How I can hide the price on a specific collection in the debutify theme .
that’s a good question
waiting for a solution 🙏🏻
Hey
I'm assuming you mean the product price on the product grid of the collection pages.
If so, please open the theme editor > theme settings > custom style/script > custom style, and paste the following CSS.
#collectionNameHere .grid-product__price-wrap{
display:none;
}
After the hashtag(#), replace the text with the name of your collection. For example, if the collection name is "Shoes", change it to #shoes.
If the collection name has spaces, replace the space with a hyphen/minus symbol (-), for example,
if the collection is "Men shoes", change it to #men-shoes.
Please find the screenshot as a reference.