Skip to content

Instantly share code, notes, and snippets.

View gincegeorge's full-sized avatar
🎯
Focusing

Gince George gincegeorge

🎯
Focusing
View GitHub Profile
@carolineschnapp
carolineschnapp / size-chart.liquid
Last active November 28, 2018 16:56
size-chart.liquid snippet
{% if template contains 'product' %}
{% assign size_options = 'size,taille' | split: ',' %}
{% assign size_chart_text_link = 'Size chart' %}
{% assign has_size = false %}
{% assign size_index = 0 %}
{% for option in product.options %}
{% assign downcased_option = option | downcase %}
{% if has_size == false and size_options contains downcased_option %}
{% assign has_size = true %}
{% assign size_index = forloop.index0 %}