Skip to content

Instantly share code, notes, and snippets.

@joe-dempsey
Created July 3, 2018 13:31
Show Gist options
  • Save joe-dempsey/22e9c71050e9061b3ad69cc2ab5355fc to your computer and use it in GitHub Desktop.
Save joe-dempsey/22e9c71050e9061b3ad69cc2ab5355fc to your computer and use it in GitHub Desktop.
Product sizes shopify
{% comment %} will output sizes if they are first option{% comment %}
<ul class="product-sizes">
{% for variant in product.variants %}
{% if variant.available %}
<li>{{ variant.option1 }}</li>
{% else %}
<li class="disable">{{ variant.option1 }}</li>
{% endif %}
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment