Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <ul class="item-swatch kkk">
  2. {% for option in product.options %}
  3. {% if option == 'Color' %}
  4. {% assign index = forloop.index0 %}
  5. {% assign colorlist = '' %}
  6. {% assign color = '' %}
  7. {% for variant in product.variants %}
  8. {% if variant.available %}
  9. {% capture color %}
  10. {{ variant.options[index] }}
  11. {% endcapture %}
  12. {% endif %}
  13. {% unless colorlist contains color %}
  14.  
  15. {% assign text = color | handleize %}
  16.  
  17. <li>
  18. <label style="{% if text == 'white' %}border: 1px solid #cbcbcb; {% endif %}background-color: {{ color | split: ' ' | last | handle }}; background-image: url({{ text | append: '.png' | file_url }});"></label>
  19.  
  20. {% if variant.image != null %}
  21. <div class="hidden">
  22. <a href="{{ variant.image.src | product_img_url: 'large' }}"></a>
  23. </div>
  24. {% endif %}
  25. </li>
  26.  
  27. {% capture tempList %}
  28. {{ colorlist | append: color | append: ' ' }}
  29. {% endcapture %}
  30.  
  31. {% assign colorlist = tempList %}
  32. {% endunless %}
  33.  
  34. {% endfor %}
  35. {% endif %}
  36. {% endfor %}
  37. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement