Created
March 1, 2017 17:54
-
-
Save ixis-kyle/6204170cc1d21aeeac5b9bd99f005045 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% for img in product.images %} | |
{% if img.src contains colorName %} | |
{% if img.src contains "rollover_1"%} | |
<img class="product_img_hover" src={{img.src | img_url: "480x480"}}> | |
{% elsif img.src contains "gallery_2" %} | |
<img class="product_img_hover" src={{img.src | img_url: "large"}}> | |
{% endif %} | |
{% endif %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment