Display day of week from calendar start_date


(Steven) #1

Hi,

I am currently displaying the start date of a single Calendar event. I want to prefix/format the date to include the day of the week.

Currently
15th Feb 2023

I would like to have it:
Wednesday 15th Feb 2023

Current display code:
%event_start_date%

II cant figure out how to do this.

Any help is much appreciated.
Thanks


(Nick Papadatos) #2

Will this do?
%event_start_date^date_format: l j M Y%

You see all the date formats here


(Steven) #3

Thats brilliant!

Thanks @NickyP

Steven