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. |
|
upcase | Converts a string to all uppercase letters. |
|
downcase | Converts a string to all lowercase letters. |
|
truncate | Shortens a string to a specified length, appending an ellipsis if necessary. |
|
strip_html | Removes any HTML tags from a string. |
|
date | Formats a date according to a specified format string. |
|
append | Concatenates one string onto the end of another. |
|
prepend | Adds a string to the beginning of another string. |
|
split | Splits a string into an array using a specified delimiter. |
|
join | Joins an array into a string using a specified separator. |
|