Hide price sold oud collection and homepage?

Topic summary

A user working with Shopify’s Venue theme seeks help hiding prices for out-of-stock products on collection and homepage displays (prices are already hidden on individual product pages).

Proposed Solution:
Community members suggest wrapping price display code with a conditional check:

  • Add {% if product.available %} before price elements
  • Add {% endif %} after price elements
  • Implementation location: Snippets/price.liquid file

Current Status:
The solution remains unresolved. The original poster reports they cannot locate the Snippets/price.liquid file in their theme, suggesting the Venue theme may have a different file structure than expected. The discussion is ongoing with no alternative solution yet provided for this specific theme configuration.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Good afternoon,

could someone help? I would really like to hide the prices of out of stock products (on the collection page / homepage). On the product page itself you can just hide the price of course. I work with the Venue theme.
the website is still behind a password but I would like to provide a password if someone can help with this. I have seen many solutions, but nothing works for me…

https://www.kunstiek.nl/

Password : Painting1980!

1 Like

Hi @Bartk1970 To hide the prices for out-of-stock products modify the file and place a if condition as below-

{% if product.available %}
{{ product.price | money }}
{% endif %}

Let me know if this works for you.

HI Dotsquare,

But modify wat file? That is what i do not know…

Hi @Bartk1970 ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Snippets/price.liquid
  2. Add code below to top of file
{% if product.available %}

  1. Add code below to end of file
{% endif %}

Thanks a lot for your help and time, but I don’t have a file Snippets/price.liquid…

Best regards,

Bart