MyBB Support

People online sidebar?

Submitted by redd, , Thread ID: 22550

Thread Closed

RE: People online sidebar?

John
Veteran Member
Level:
0
Reputation:
25
Posts:
245
Likes:
38
Credits:
159
30-07-2016, 02:36 PM
This post was last modified: 30-07-2016, 03:32 PM by John
#19
I'm not exactly sure I'm following what you're saying. You can't just use a method if it doesn't have the function you need.

Taking a look at the default MyBB theme, go to index_whosonline. You should find code resembling this:
Code:
<tr>
<td class="tcat"><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>


</tr>

Take a further look here:
Code:
<td class="trow1"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>

{#lang->online_note}'s function is to show you this: 2 users active in the past 15 minutes (1 member, 0 of whom are invisible, and 1 guest).
{$onlinemembers}'s function is to show you which members are currently online.

Simply reverse the two functions in that line of code and it should look like this:
Code:
<td class="trow1"><span class="smalltext">{$onlinemembers}<br />{$lang->online_note}</span></td>

Save and refresh your forum, and your board stats for who's online should look like this:
[Image: KJQy0tU.png]
NulledBB Member Since 2013 | Former Staff Member | Web Designer

Need MyBB/website help? Feel free to message me!

Users browsing this thread: 1 Guest(s)