Why The Registering Date Is Not Complete? »  Show posts from    to     

Icy Phoenix


Old Support Topics - Why The Registering Date Is Not Complete?



Sarakin [ Thu 05 Feb, 2009 10:50 ]
Post subject: Why The Registering Date Is Not Complete?
I was taking a look to make some checkings and I saw that on my Icy Testing-Site I have a new registered user. When I was out to check his/her Register date, I realized that the day was NOT shown, but only the month and year. Are there any way to fix this? I like more the dates if shown completely.


Chaotic [ Sat 14 Feb, 2009 10:20 ]
Post subject: Re: Why The Registering Date Is Not Complete?
Sarakin,

Give this a try.

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

I'm going to create a DOC for this as well.




Powered by Icy Phoenix