Buy me a coffee

How to hide the price of a certain product

To hide price of a product on Store/Category Page + Product Detail Page, you can follow these

#1. First, edit a Product

How To Hide The Price Of A Certain Product 01 Min

#2. Assign a tag with the name: no price

How To Hide The Price Of A Certain Product 02 Min

#3. Use this code to Custom CSS box

/* hide price */
.tag-no-price .product-price {
display: none !important;
}

How To Hide The Price Of A Certain Product 03 Min

#4. To hide the price on the Cart Page, you need to do these

First, find the product URL, in my example, we will have this

How To Hide The Price Of A Certain Product 04 Min

Next, use this code to Custom CSS box

div.cart-row:has([href="/store-2/p/country-feast-set"]) .cart-row-price {
display: none !important;
}

How To Hide The Price Of A Certain Product 05 Min

Result:

How To Hide The Price Of A Certain Product 06 Min