Display VARIANT Inventory Count On Product Page - Debut Theme

Hello!
I am looking for help on writing/developing/entering code to be able to display VARIANT Inventory Count On Product Pages with the DEBUT Theme version 17.3.0. Thank you!

1 Like

@Lydia_C

yes, please add this code whenever do you have display at product page


{% 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 %}

Thank you for this… can you please clarify where exactly this would go?

1 Like

@Lydia_C

can you please share product section code so i will check update