Log in

View Full Version : Currently Active Users


limgeorge
10-19-2002, 02:12 AM
Is there any hacks that allow user to click on a link( the link would be who's online) which open up a small lil window to display all the currently active users , rather then listing all the active users on the bottom of the page. This can be really messy when there are more then 500 users on line at the same time. By having the small pop up windows allow users to sort thru currently active users by names or whatever informations that can be display.

Dean C
10-20-2002, 08:28 AM
You can do this by editing templates

Try this..

In your 'forumhome_loggedinusers' template change this:


<tr id="cat">
<td bgcolor="{categorybackcolor}" colspan="6"><a href="online.php?s=$session[sessionhash]"><normalfont color="{categoryfontcolor}"><b>Currently Active Users</b></normalfont></a><normalfont color="{categoryfontcolor}"><b>: $totalonline</b></normalfont></td>
</tr>
<tr>
<td bgcolor="{firstaltcolor}" colspan="6"><smallfont>
<nobr>There are currently $numberregistered members and $numberguest guests on the boards.</nobr> |
<nobr>Most users ever online was $recordusers on $recorddate at $recordtime.</nobr><br>
$activeusers</smallfont></td>
</tr>


to this:


<tr id="cat">
<td bgcolor="{categorybackcolor}" colspan="6"><a href="online.php?s=$session[sessionhash]"><normalfont color="{categoryfontcolor}"><b>Currently Active Users</b></normalfont></a><normalfont color="{categoryfontcolor}"><b>: $totalonline</b></normalfont></td>
</tr>
<tr>
<td bgcolor="{firstaltcolor}" colspan="6"><smallfont>
<nobr>There are currently $numberregistered members and $numberguest guests on the boards.</nobr> |
<nobr>Most users ever online was $recordusers on $recorddate at $recordtime.</nobr><br>
$activeusers</smallfont></td>
</tr>


_________

Regards

- miSt