Skip to content

Instantly share code, notes, and snippets.

@anilmeena
Created October 9, 2016 08:34
Show Gist options
  • Save anilmeena/c1c2c091882b7f15532db0a083a0f1f1 to your computer and use it in GitHub Desktop.
Save anilmeena/c1c2c091882b7f15532db0a083a0f1f1 to your computer and use it in GitHub Desktop.
Display all products from same Collections in loop
/* 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