CUSTOMIZATION - How To Change Registration Date Format »  Show posts from    to     

Icy Phoenix


Documentation And How To - CUSTOMIZATION - How To Change Registration Date Format



Chaotic [ Sat 14 Feb, 2009 10:35 ]
Post subject: CUSTOMIZATION - How To Change Registration Date Format
OPEN: ip_root/language/your_language/lang_main_settings.php

FIND:

Code: [Hide] [Select]
$lang['JOINED_DATE_FORMAT'] = 'F Y'; // Date format of Joined date, php date() format


REPLACE WITH:

Code: [Hide] [Select]
$lang['JOINED_DATE_FORMAT'] = 'M d, Y g:i a'; // Date format of Joined date, php date() format


This will produce this result:

date

If you would like to remove the exact time a user registered and just keep the Month/Day/Year, try this.

OPEN: ip_root/language/your_language/lang_main_settings.php

FIND:

Code: [Hide] [Select]
$lang['JOINED_DATE_FORMAT'] = 'F Y'; // Date format of Joined date, php date() format


REPLACE WITH:

Code: [Hide] [Select]
$lang['JOINED_DATE_FORMAT'] = 'M d, Y'; // Date format of Joined date, php date() format


This will produce this result:

date1

For more PHP date formats, please visit: http://us.php.net/date


DWho [ Sat 14 Feb, 2009 11:29 ]
Post subject: Re: How To Change Registration Date Format
Nice find and looks better IMO will be adding this...





Powered by Icy Phoenix