MyBB Community Forums

Full Version: Online/offline status in memberlist
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to show the online/offline status of a user in the member list?

the below does not work.
{$post['onlinestatus']}
The user online status is taken from the mybb sessions table. If you look at how "online.php" works you will see the query. Post onlinestatus will not work because the memberlist is not a post.

The memberlist only queries the userfields and the users table. You would have to edit the memberlist core file or apply a patch to it.

Actually, on reflection, the member.php might be better to study as it looks to see if a user is online and checks permissions to view that info.