MyBB Community Forums

Full Version: Online list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
anyone of you guys may know this little problem that i have encountered.

i am using onlinelist mods that can be found in mods.mybboard.net



im just confused after installing the plugins why the onlinelist plugins looks like this

[Image: untitled.jpg]

anybody can help?
post your whos online template here.. i think you need to add "colspan=" tag there.. Smile
Online
Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->users_online}</title>
{$headerinclude}
{$refresh}
</head>
<body>
{$header}
{$multipage}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="3"><strong>{$lang->users_online}</strong></td>
</tr>
<tr>
<td class="tcat" align="center"><a href="online.php?sortby=username"><span class="smalltext"><strong>{$lang->on_username}</strong></span></a></td>
<td class="tcat" align="center"><a href="online.php?sortby=time"><span class="smalltext"><strong>{$lang->time}</strong></span></a></td>
<td class="tcat" width="50%"><a href="online.php?sortby=location"><span class="smalltext"><strong>{$lang->location}</strong></span></a></td>
</tr>
{$online_rows}
<tr>
<td class="tfoot" colspan="3" align="right"><span class="smalltext"><strong><a href="online.php?action=today">{$lang->online_today}</a> | <a href="online.php">{$lang->refresh_page}</a></strong></span></td>
</tr>
</table>
<br />
{$multipage}
{$footer}
</body>
</html>
[/quote]



online_row
Quote:<tr>
<td class="trow1">{$online_name}{$user_ip}</td>
<td align="center" class="trow2">{$online_time}</td>
<td class="trow1" width="50%">{$location}</td>
</tr>

online_today
Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->online_today}</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" align="center" width="50%"><span class="smalltext"><strong>{$lang->on_username}</strong></span></td>
<td class="thead" align="center" width="50%"><span class="smalltext"><strong>{$lang->time}</strong></span></td>
</tr>
{$todayrows}
<tr>
<td align="center" colspan="2" class="trow1" style="white-space: nowrap">{$onlinetoday}</td>
</tr>
</table>
{$footer}
</body>
</html>

online_today_row
Quote:<tr>
<td align="center" class="trow1" width="50%">{$online['profilelink']}{$invisiblemark}</td>
<td align="center" class="trow2" width="50%">{$onlinetime}</td>
</tr>



that;s what u looking for sir?
bumps!!!
Not those ones, it's in the Global Templates Set.
u mean this?


Quote:<tr><td class="tcat"><strong>Group Legend</strong></td></tr>
<tr><td class="trow1"><span class="smalltext">{$usertitles}</span></td></tr>


i found this one in global templates/group legend


or this one group legend page

Quote:<html>
<head><title>{$mybb->settings['bbname']} - Usergroup Page</title>{$headerinclude}</head>
<body>
{$header}
{$multipage}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding=\"{$theme['tablespace']}" class="tborder">
<tr><td class="thead" colspan="5"><strong>Members Of {$ugroup[$gid]['title']} :</strong> {$num}</td></tr>
<tr>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->avatar}</strong></span></td>
<td class="tcat" align="center"><span class="smalltext"><strong>{$lang->username}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->joined}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->lastvisit}</strong></span></td>
<td class="tcat" width="10%" align="center"><span class="smalltext"><strong>{$lang->posts}</strong></span></td>
</tr>
{$usersrow}</table>
{$footer}
</body>
</html>
The first one, use this:

<tr><td class="tcat" colspan="2"><strong>Group Legend</strong></td></tr>
<tr><td class="trow1" colspan="2"><span class="smalltext">{$usertitles}</span></td></tr>