2015-08-22, 07:54 PM
Hi,
I've solved this case shortly after posting the thread so this is an edited version of OP
I have a special user on my board and people would like to have his lastvisit/lastactive date/time seen on all forum pages.
On my forum I've added this info to header_welcomeblock_member template.
You might need PHP and Template Conditionals to run this. I've added those lines in my subnav.
I've solved this case shortly after posting the thread so this is an edited version of OP
I have a special user on my board and people would like to have his lastvisit/lastactive date/time seen on all forum pages.
On my forum I've added this info to header_welcomeblock_member template.
You might need PHP and Template Conditionals to run this. I've added those lines in my subnav.
<?php
global $db;
$query = $db->simple_select("users", "*",
"uid=THE FIXED USER ID NUMBER");
$lastactive = $db->fetch_field($query, "lastactive");
echo gmdate("H:i , d-m-Y", $lastactive);
//OUTPUT: 10:13 , 10-07-2015
?>