Display inventory in stock boundless theme

Hi,

Is it possible to have a badge or text box of some sort on the collection page to show your stock levels (like X available) like on the image attached? and then also on the product page? I make quite limited edition items so would be nice to create some urgency.

I’m using the boundless theme and my website is may29.co.uk

Thanks!

1 Like

@EmilieEgelund

yes please try this code


{% if product.variants.first.inventory_management == "shopify" %}
{% if product.variants.first.inventory_quantity > 0 %}
We currently have {{ product.variants.first.inventory_quantity }} in stock.
{% else %}
The product is out of stock
{% endif %}
{% else %}
This product is available
{% endif %}

Hi Ketan,

Thanks so much but sorry I am quite a newbie so where in the code would I paste this?

Thanks,

Emilie