Page 1 of 1

Updated date vs date created

Posted: Sat Jul 02, 2022 1:47 am
by HowardB
In the ANDY theme it shows the date created and not date updated which looks odd to users
In this theme and any others with the same configuration can the date format be changed to date updated

many thanks

Re: Updated date vs date created

Posted: Sun Jul 03, 2022 7:28 pm
by Edi
The following code snippet shows the date of the content:

Code: Select all

<?php echo $page->date(); ?>
In the theme Andy you can find it in the followind templates:
  • home.php at line 43,
  • page.php at line 24.
Instead of $page->date() you can use $page->dateModified() to show the date of the last modification of the content:

Code: Select all

<?php echo $page->dateModified(); ?>

Re: Updated date vs date created

Posted: Wed Jul 06, 2022 7:49 am
by HowardB
Many thanks just what I wanted