Filters are simple methods that modify the output of numbers, strings, variables and objects. They are placed within an output tag {{
}}
and are denoted by a pipe character |
.
{{ Campaign.Name | upcase }}
5K RUN
In the example above, Campaign
is the object, Name
is its attribute, and upcase
is the filter being applied.
Some filters require a parameter to be passed.
{{ Campaign.Name | remove: "5K" }}
Run
Multiple filters can be used on one output. They are applied from left to right.
{{ Campaign.Name | upcase | remove: "5K" }}
RUN
To learn about all the filters available in Liquid, please see this Liquid documentation. Please keep in mind that not necessarily will all the filters listed there work in Neon Fundraise's system. Below we will list out the filters that are most relevant to Neon Fundraise administrators and those Neon Fundraise added in its own Liquid adaptation.
Please click through to learn more about Neon Fundraise's Liquid filters: