Hi
I have the following Twig statement
{% set event = looper.item %}
{{ event.event_date }}
which returns 20250310 from an ACF field which looks to be correct for 10th March 2025
following this post Format Looper Twig Date
I created this
{% set event = looper.item %}
{{ event.event_date | date(‘F j’)}} @ {{ event.event_time | date(‘g:i a’)}}
to display the date and time in a more readable format but it is returning August 23
i am not certain how to use the other option in the post
{{ looper.field({“key”:“time”, “format”: “F j, Y”, “type”: “date”}) }}