Created
October 9, 2016 08:34
-
-
Save anilmeena/c1c2c091882b7f15532db0a083a0f1f1 to your computer and use it in GitHub Desktop.
Display all products from same Collections in loop
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
/* Display all products from same Collections in loop */ | |
<ul> | |
{% for product in collections.collection-1.products %} | |
<li{% cycle 'group1': ' style="clear:both;"', '', '', ' class="last"' %}> | |
<a href="{{ product.url | within: collection }}"> | |
<img src="{{ product.featured_image.src | product_img_url: "medium" }}" alt="{{ product.featured_image.alt }}" /> | |
</a> | |
</li> | |
{% endfor %} | |
</ul> | |
<ul> | |
{% for product in collections.collection-2.products %} | |
<li{% cycle 'group2': ' style="clear:both;"', '', '', ' class="last"' %}> | |
<a href="{{ product.url | within: collection }}"> | |
<img src="{{ product.featured_image.src | product_img_url: "medium" }}" alt="{{ product.featured_image.alt }}" /> | |
</a> | |
</li> | |
{% endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment