• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

add the date and time in the statistics

cobra1162

Active member
add the date and time in the statistics

clock.webp


So in the template forum_list

Find:
Code:
<dd><a href="{xen:link members, $boardTotals.latestUser}" class="username">{$boardTotals.latestUser.username}</a></dd></dl>

Add below:

Code:
<li><div class="time muted">{xen:datetime $datetime, 'absolute'}</div></li>

For support please visit this forum French: XENFRENCH
Pour le support français veuillez visiter ce forum: XENFRENCH
 
Based on this template modification, I managed to do this:
30-10-2011 9-17-10.webp
Find:
Code:
<dl><dt>{xen:phrase latest_member}:</dt>
<dd><xen:username user="$boardTotals.latestUser" /></dd></dl>

Add after:
Code:
<dl><dt>Date and time:</dt>
<dd><li><div class="time muted">{xen:datetime $datetime, 'absolute'}</div></li></dd></dl>
 
Top Bottom