- Issue created by @arne_hortell
- 🇸🇪Sweden arne_hortell
Here is a patch which adds date and numeric field type
- Status changed to Closed: works as designed
9 months ago 12:17pm 23 February 2024 - 🇺🇦Ukraine AstonVictor
You can simply rewrite your results by using twig functions to convert dates.
e.g.
to convert timestamp to date format -{{ value|date('d - m - Y') }}
to convert date format to timestamp -{{ value|date('U') }}
to convert date format to another date format -{{ value|date('U')|date('d - m - Y') }}
- 🇮🇩Indonesia tinohuda
Thank you @AstonVictor
Its work for displaying, but not working for filter/exposed filter in date format.