Is there a way to change the way the last visit date is "presented"?
For instance, right now it looks something like this:
2011-04-23 13:44:24
Can it be changed to present the date like this:
April 4, 2011 at 1:44pm
If so, how?
Thanks!
Moderator: jamesSBT

case 'registerdate':
$ui = $this->u->registerDate ? $this->u->registerDate : $this->guestregisterdate;
break;
case 'lastvisitdate':
$ui = $this->u->lastvisitDate ? $this->u->lastvisitDate : $this->guestlastvisitdate;
break;
case 'registerdate':
$ui = $this->u->registerDate ? date("F j, Y", strtotime($this->u->registerDate)) : $this->guestregisterdate;
break;
case 'lastvisitdate':
$ui = $this->u->lastvisitDate ? date("F j, Y", strtotime($this->u->lastvisitDate)) : $this->guestlastvisitdate;
break;



Return to Joomla: Nice User Info
Users browsing this forum: No registered users and 0 guests