Replace joined by last visit in post profil

Note: no support provided in this sub-forum
Forum rules
Note: no support provided in this sub-forum
Post Reply
User avatar
Stanton
Registered user
Posts: 1
Last visit: Wed Sep 04, 2024 10:18 am

Replace joined by last visit in post profil

Post by Stanton »

Open viewtopic.php and find

Code: Select all

'joined'		=> $user->format_date($row['user_regdate']),
Replace with

Code: Select all

'joined'		=> $user->format_date($row['user_lastpost_time']),

Open styles/prosilver/viewtopic_body.html and find

Code: Select all

<dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd>
Replace width

Code: Select all

<dd class="profile-joined"><strong>{L_LAST_ACTIVE}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd>

Clear cache after
Post Reply