Looping Statements in Shopify Liquid
Liquid provides several looping mechanisms to iterate over collections of data in Shopify themes. In this tutorial you are going to learn those.
for
Loop
Repeatedly executes a block of code. For a full list of attributes available within a for loop
-
You can do a maximum of 50 iterations with a for loop.
-
If you need to iterate over more than 50 items, then use the paginate tag to split the items over multiple pages.
Syntax
{% for variable in array %}
expression
{% endfor %}
-
variable : The current item in the array.
-
array : The array to iterate over.
-
expression : The expression to render for each iteration.
Example
Code | Output |
---|---|
| |
Loop Parameters
These parameters define how the loop operates:
Parameter | Description | Syntax |
---|---|---|
| Limits the number of iterations. |
|
| Can specify a 1-based index to start iterating |
|
| Iterates through the collection in reverse order. |
|
| Loops through a specified range of numbers. |
|
Loop Controls
These control how the loop executes:
Parameter | Description | Example |
---|---|---|
| Run if the loop has zero length. | |
| The loop to skip the current iteration | |
| The loop to stop iterating | |
Loop Variables
These provide information about the current iteration. It work inside the loop
Variable | Description | Example |
---|---|---|
| 1-based index of the current iteration |
|
| 0-based index of the current iteration |
|
| 1-based reverse index (counting down from the total length) |
|
| 0-based reverse index |
|
| Returns true if the current iteration is the first |
|
| Returns true if the current iteration is the last |
|
| Total number of items in the loop. |
|
| The parent forloop object. | |
cycle
inside for
Loop
Loops through a group of strings and outputs them one at a time for each iteration of a for loop.
Syntax
{% cycle string, string, ... %}
Code
{% for i in (1..4) -%}
{% cycle 'one', 'two', 'three' %}
{%- endfor %}
Output
one
two
three
one
Uses for cycle
-
applying odd/even classes to rows in a table
-
applying a unique class to the last product thumbnail in a row
Shopify Liquid paginate
The paginate
tag use to limit the number of items displayed per page and navigate through them.
paginate
Syntax
{% paginate array by page_size %}
{% for item in array %}
forloop_content
{% endfor %}
{% endpaginate %}
-
array : The array to be looped over.
-
page_size : The number of array items to include per page, between 1 and 50.
-
item : An item in the array being looped.
-
forloop_content : Content for each loop iteration.
paginate
Example
{% paginate collection.products by 5 %}
{% for product in collection.products -%}
{{ product.title }}
{%- endfor %}
{{- paginate | default_pagination }}
{% endpaginate %}
Output
Blue Mountain Flower
Charcoal
Crocodile tears
Dandelion milk
Draught of Immortality
<span class="page current">1</span>
<span class="page"><a href="/services/liquid_rendering/resource?page=2" title="">2</a></span>
<span class="page"><a href="/services/liquid_rendering/resource?page=3" title="">3</a></span>
<span class="page"><a href="/services/liquid_rendering/resource?page=4" title="">4</a></span>
<span class="next"><a href="/services/liquid_rendering/resource?page=2" title="">Next »</a></span>