Adding/substracting days in Shopify's Liquid template language
- Published on
- Published on
- /1 mins read/---
Adding/substracting days in Shopify's Liquid template language
Result:
How it works
- First convert
now
to seconds since 1970 with filter| date: "%s"
. - Convert
days
range to secondsx 24 x 60 x 60
- Use filters
| minus
or| plus
to get the result and parse back to date format withdate: "%b %d"
filter
The format for Liquid date is the same as strftime.