Change date format in News Module?
-
- Forum Members
- Posts: 14
- Joined: Thu Sep 09, 2010 11:04 pm
Change date format in News Module?
Where can I change the date format string for the news module, so it actually works. The user preferences for date format is not working?
Re: Change date format in News Module?
Code: Select all
{$entry->postdate|cms_date_format}
However note that when you're trying to e.g. print month and/or date names in a specific language, you're server must have those languages 'installed/configured'.
-
- Forum Members
- Posts: 14
- Joined: Thu Sep 09, 2010 11:04 pm
Re: Change date format in News Module?
I have that code applied to the templates, but it still don´t react on changes in the user preferences Language related settings. I even made the field "Date Format String" empty, but there is still no reaction?
Maybe I do it wrong..?
Maybe I do it wrong..?
Re: Change date format in News Module?
Alternatively
http://php.net/manual/en/function.date.php
Code: Select all
{$entry->postdate|date_format:'%d %m %Y'}