Skip to content

Instantly share code, notes, and snippets.

View toledox82's full-sized avatar
🏠
Working from home

Marcio Toledo toledox82

🏠
Working from home
View GitHub Profile
@toledox82
toledox82 / product-card-grid.liquid
Created May 22, 2020 02:48
Shopify: Add product options (variants) on product listing
{% if product.options[0] == 'Size' %}
<small>Sizes:
{% for sizes in product.options_by_name['Size'].values %}
{% if forloop.last == true %}
{{ sizes }}
{% else %}
{{ sizes | append: ', ' }}
{% endif %}
{% endfor %}
</small>