Hi,
I'm using the minimal theme and I would like to add the inventory quantity for my products on their respective pages. I want it to show as "We have _ available." or "Out of Stock".
Thanks
Solved! Go to the solution
This is an accepted solution.
Welcome to the Shopify community!
and Thanks for your Good question.
can you please add this code whenever do you have show
<div id="variant-inventory">
{% 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 %}
</div>
it's my pleasure to help us
yes, please above code
User | Count |
---|---|
550 | |
213 | |
129 | |
81 | |
44 |