MyBB Community Forums

Full Version: who's online now
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make the who is online line appear on my forum above members
http://thegame-zone.com/index.php
check the contents of index_whosonline template (Index Page Templates group)
code like below should exist
<td class="tcat"><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></td>
looks like <strong>{$lang->whos_online}</strong> is missing
If you click the little font awesome man icon next to "Google, cleopatra" it takes you to the Who's online page. same with the stats icon.
This is my index whosonline

<tr>
<td class="trow1">
<a href="online.php"><i class="fa fa-user" title="Members online now"></i></a> &nbsp; <span class="smalltext"> {$onlinemembers}</span>
</td>
</tr>
after <td class="trow1">, you can add <span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span><br />
it just appeared
Who's Online [Complete List]

ok i fixed it
i just have edit it like that

<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>