Hide price on a product template

Hey,

I have made this page utilising a bundle builder: https://slickgorilla.co.uk/products/hair-routine-builder

I would like to hide the price just below the product name, how can I hide it on just this product?

This product is using its own template and is using the biscuit bundles app

1 Like
{% if template == 'index' %}

{% endif %}

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the ----->
if this code work please do not forget to like and mark it solution

When you configuring this template in theme Customize, go to the “Product Information” section settings and open “Custom CSS” at the bottom.

Paste this code:

.product-meta__price-list-container {
  display: none;
}

This will hide the prices:

Because it’s a separate template, the code will only apply for products using this template.

That worked, thank you for the help!

To hide the price on the Hair Routine Builder product page without using any code, go to your Shopify admin and navigate to Online Store > Themes, then click Customize on your active theme. Once in the theme editor, open the specific product page for the Hair Routine Builder. On the left-hand panel, locate the section that displays product information — this usually includes the product title, price, and description. Click on the price block, and if available, use the toggle to hide it or select “Remove block” to delete it entirely from this template. If your theme doesn’t allow hiding the price for just one product, you can duplicate the product template, assign it only to this product, and then remove the price block from that template version. This way, the price will remain visible on other product pages but hidden only on the Hair Routine Builder page.