Skip to content

Instantly share code, notes, and snippets.

@kyleaparker
Created March 20, 2014 14:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyleaparker/9665660 to your computer and use it in GitHub Desktop.
Save kyleaparker/9665660 to your computer and use it in GitHub Desktop.
Shopify: Show number of variants still available
{% assign total = product.variants | map: 'available' | join: ", " | remove: 'false, ' %}
{% assign available = total | split: ',' %}
{{ available.size }} of {{ product.variants.size }} left
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment