Shopify Theme Liquid Filters

Liquid filters are used to modify the output of variables and objects. To apply filters to an output, add the filter and any filter parameters within the output’s curly brace delimiters, preceded by a pipe character. {{ | }}


Commonly used Filters

Filter Description Example

money

Formats a number as currency according to the shop’s settings.

{{ product.price | money }}

upcase

Converts a string to all uppercase letters.

{{ "hello" | upcase }}

downcase

Converts a string to all lowercase letters.

{{ "HELLO" | downcase }}

truncate

Shortens a string to a specified length, appending an ellipsis if necessary.

{{ "Shopify Liquid Filters" | truncate: 10 }}

strip_html

Removes any HTML tags from a string.

{{ "<p>Hello</p>" | strip_html }}

date

Formats a date according to a specified format string.

{{ product.created_at | date: "%Y-%m-%d" }}

append

Concatenates one string onto the end of another.

{{ "Hello" | append: " World" }}

prepend

Adds a string to the beginning of another string.

{{ "World" | prepend: "Hello " }}

split

Splits a string into an array using a specified delimiter.

{{ "a,b,c" | split: "," }}

join

Joins an array into a string using a specified separator.

{{ array | join: ", " }}