Last active
November 21, 2017 16:35
-
-
Save andreibabor/07ecaaec96d1e50b70b4ee98bb7beb61 to your computer and use it in GitHub Desktop.
shopify loop first section 7 products, and last 8products new sections
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
{% comment %}<h3>First 7 products</h3> | |
<ul> | |
{% for product in collections.products.products limit:7 %} | |
<li><a href="{{ product.url }}">{{ product.title }}</a></li> | |
{% endfor %} | |
</ul> | |
<h3>8 and up</h3> | |
<ul> | |
{% for product in collections.products.products offset:7 %} | |
<li><a href="{{ product.url }}">{{ product.title }}</a></li> | |
{% endfor %} | |
</ul>{% endcomment %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment