Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andreibabor/07ecaaec96d1e50b70b4ee98bb7beb61 to your computer and use it in GitHub Desktop.
Save andreibabor/07ecaaec96d1e50b70b4ee98bb7beb61 to your computer and use it in GitHub Desktop.
shopify loop first section 7 products, and last 8products new sections
{% 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