Skip to content

Instantly share code, notes, and snippets.

@rafaelss
Created June 11, 2013 13:46
Show Gist options
  • Save rafaelss/5756992 to your computer and use it in GitHub Desktop.
Save rafaelss/5756992 to your computer and use it in GitHub Desktop.
{% assign available_variants = "|" %}
{% for variant in product.variants %}
{% if variant.available %}
{% assign available_variants = available_variants | append: "|" | append: variant.attributes.size %}
{% endif %}
{% endfor %}
{{ available_variants | remove_first: "|" | split: "|" }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment