Last active
November 17, 2017 18:51
-
-
Save dylanjhunt/fb6cf54cff39fae02c77eb50c86b72ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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