Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

I want to hide Products out of stock

I want to hide Products out of stock

pedromonteirouk
Excursionist
20 1 2

Hi community,

I would like to hide the products that are out of stock.

I want a script to use in a liquid file. I don’t want to use any paid app

Replies 2 (2)

SBD_
Shopify Staff
1831 273 421

Hey @pedromonteirouk 

 

Here are some options: https://help.shopify.com/en/manual/products/inventory/getting-started-with-inventory/hide-out-of-sto...

 

Otherwise to specifically use liquid, try something like this on collection pages:

{% for product in collections.all.products %}
  {% if product.available %}
    <!-- Product card here -->
  {% endif %}
{% endfor %}

 

Scott | Developer Advocate @ Shopify 

pedromonteirouk
Excursionist
20 1 2
Can you tell me in what collection page should I add this code?