Shopify Liquid Data Types and Variables
In Shopify Liquid, variables and data types are foundational concepts that help you manipulate and display content dynamically.
Shopify Liquid Data Types
Type | Description | Example |
---|---|---|
String | A sequence of characters enclosed in quotes. |
|
Number | Integer or decimal numbers. |
|
Boolean | True or false values. |
|
Nil | Represents an empty or undefined value. |
|
Array | A collection of items that can be looped through. |
|
Truthy and Falsy
All data types must return either true
or false
. Those which return true
by default are called truthy. Those that return false
by default are called falsy.
Value | Truthy | Falsy |
---|---|---|
true | ✔ | |
false | ✔ | |
nil | ✔ | |
empty string | ✔ | |
0 | ✔ | |
integer | ✔ | |
float | ✔ | |
array | ✔ | |
empty array | ✔ | |
page | ✔ | |
empty object | ✔ |
Liquid Variable tags
Variable tags create new Liquid variables.
Tag | Description | Example |
---|---|---|
| Assigns a value to a variable. |
|
| Captures a block of content into a variable. |
|
| Increments a numeric variable. |
|
| Decrements a numeric variable. |
|
Liquid Variable assign
Creates a new named variable.
Code
{% assign my_variable = false %}
{% if my_variable != true %}
This statement is valid.
{% endif %}
Output
This statement is valid.
Liquid Variable capture
Captures the string inside of the opening and closing tags and assigns it to a variable. Variables created using capture
are stored as strings.
Code
{% assign favorite_food = "pizza" %}
{% assign age = 35 %}
{% capture about_me %}
I am {{ age }} and my favorite food is {{ favorite_food }}.
{% endcapture %}
{{ about_me }}
Output
I am 35 and my favourite food is pizza.
Liquid Variable increment
Creates and outputs a new number variable with initial value 0
. On subsequent calls, it increases its value by one and outputs the new value.
Code
{% increment my_counter %}
{% increment my_counter %}
{% increment my_counter %}
Output
0
1
2
Liquid Variable decrement
Creates and outputs a new number variable with initial value -1
. On subsequent calls, it decreases its value by one and outputs the new value.
Code
{% decrement variable %}
{% decrement variable %}
{% decrement variable %}
Output
-1
-2
-3