Math filters allow you to apply mathematical tasks. Math filters can be linked and, as with any other filters, are applied in order of left to right. See more math filters here, however please keep in mind that not all Liquid filters work in Neon Fundraise's system.
Filters on this page:
-
plus
-
minus
-
times
-
divided_by
plus
Adds a number to another number.
Input
{{ 6 | plus: 2 }}
Output
8
minus
Subtracts a number from another number.
Input
{{ 6 | minus: 2 }}
Output
4
times
Multiplies a number with another number.
Input
{{ 6 | times: 2 }}
Output
12
divided_by
Divides a number by another number.
Input
{{ 6 | divided_by: 2 }}
Output
3