> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.app-hive.dev/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How can I hide the product price?

Shopify doesn't provides a solution to hide a price per product unfortunately, so it requires a bit of work to get this working. The following technique works for any theme but it requires a bit of searching. If you need any assistance, don't hesitate to reach out.

Go to **Online Store -> Themes** and choose **Edit code** for the theme that you are using:

![Edit Theme Code](https://storage.crisp.chat/users/helpdesk/website/ad91e0c51f735800/image_at1tp7.png)

Now you will need to look for liquid files that contain the price information of your product. This is different per product, but a common example is to use **price.liquid**. If you take a look at a section of this file, you can find an outer `<div>` that looks like this:

```html
<div class="
    price
    {%- if price_class %} {{ price_class }}{% endif -%}
    {%- if available == false %} price--sold-out {% endif -%}
    {%- if compare_at_price > price %} price--on-sale {% endif -%}
    {%- if product.price_varies == false and product.compare_at_price_varies %} price--no-compare{% endif -%}
    {%- if show_badges %} price--show-badge{% endif -%}
  ">
```

To hide the price, we need to add our own class (`quotify-hide-price-{{ product.id }}`), the end result would be:

```html
<div class="
    price
    quotify-hide-price-{{ product.id }}
    {%- if price_class %} {{ price_class }}{% endif -%}
    {%- if available == false %} price--sold-out {% endif -%}
    {%- if compare_at_price > price %} price--on-sale {% endif -%}
    {%- if product.price_varies == false and product.compare_at_price_varies %} price--no-compare{% endif -%}
    {%- if show_badges %} price--show-badge{% endif -%}
  ">
```

And that's it. The price will now be hidden (based on your Quotify settings)