Date Filters - aareano/ifshop-wiki GitHub Wiki
These filters can be applied to date objects, in addition to Shopify's.
add_seconds
Adds seconds to a date. Helpful for moving a date to further in the future.
Input
{{ my_publishing_date | date: "%F %R %z" }}
{{ my_publishing_date | add_seconds: 10 | date: "%F %R %z" }}
Output
2017-01-23 20:00 -0500
2017-01-23 20:10 -0500
iso8601
Returns the date string in iso8601 format.
Input
{{ "now" | parse_date | iso8601 }}
Output
2017-02-03T01:39:20-05:00
parse_date
Returns the date corresponding to the input string.
Input
{{ "2007-12-31T19:00:00-05:00" | parse_date | date: "%F %R %z" }}
{{ "now" | parse_date | date: "%F %R %z" }}
Output
2007-12-31 19:00 -0500
2017-01-23 23:50 -0500
sub_seconds
Subtracts seconds from a date. Helpful for moving a date to further in the past.
Input
{{ my_publishing_date | date: "%F %R %z" }}
{{ my_publishing_date | sub_seconds: 10 | date: "%F %R %z" }}
Output
2017-01-23 20:10 -0500
2017-01-23 20:00 -0500
unix_timestamp
Returns the unix timestamp (second resolution) of a date object.
Input
{{ my_date | unix_timestamp }}
Output
1486107389
utc
Returns the date object converted to the UTC timezone.