Skip to content

Instantly share code, notes, and snippets.

@dylanjhunt
Last active November 17, 2017 18:51
Show Gist options
  • Save dylanjhunt/fb6cf54cff39fae02c77eb50c86b72ae to your computer and use it in GitHub Desktop.
Save dylanjhunt/fb6cf54cff39fae02c77eb50c86b72ae to your computer and use it in GitHub Desktop.
<div id="variant-inventory">
{% assign total = 0 %}
{%for variant in product.variants %}
{% capture i %}{{ total | plus:variant.inventory_quantity }}{%endcapture%}
{% assign total = i %}
{%endfor%}
{% unless total == '0' %}
Only {{ total }} left
{% endunless %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment