Now i'm trying to change date format from dd.mm.yyyy to yyyy.mm.dd in event calendar.
i can't find the code which indicates date format.
is there a way to adjust the date format?
thank you for any help.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Melvyn Gómez@melvyn

Melvyn Gómez - 0 likes
- gatchi@gatchi

gatchi - 0 likes
You must log in to post replies.in your code you can try something like this
date("Y m d" ,$event->start_date)
thank you :)