Reflection of quantities left of online store - Debut Theme

Good afternoon,

We have a sale going on on our website at the moment. We have limited items on sale and would like the quantities to reflect on the screen as it is sold. We have the debut theme.

Kindly advise how can let the quantities left like “2 Left” to reflect under the product on sale.

URL: https://vergenoegdhome.co.za/collections/sale

Thank you

Carmia Blom

1 Like

@CKruger

Welcome to shopify community.
You can try out this code. Where you want to display the Quantity left in stock.

{% assign product_qty = 0 %}
{% for variant in product.variants %}
{% if variant.inventory_quantity > 0 %}
{% assign product_qty = product_qty | plus: variant.inventory_quantity %}
{% endif %}
{% endfor %}
{% if product_qty > 0 %}
      

  HURRY!  Selling out fast! Only **{{ product_qty }}** left in stock!

                 
      {% endif %}

Like this screenshot.

Thank you.

1 Like

@devtalk Thank you very much.

Where do I go to paste this code if I would like it to only be displayed on one page for specific products and not all pages?

1 Like

@CKruger

As per your Concern, you have create a sperate product page.
And apply their. for this you need a developer help, or you need to hire a developer.
If you’d like to discuss this more, don’t hesitate to send me a PM.

Thank you.

1 Like