I had that hack removed. I'm not really involved with making hacks anymore, but I think I did fix the activity view problem that WW was talking about. Anyway, if you want to show a list of top active users, then follow these instructions.
Create a new template. Name it
activity with the following contents.
HTML Code:
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
<td class="tcat" width="100%">Top Active Users</td>
</tr>
</table>
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left" nowrap="nowrap">User Name</td>
<td class="thead" nowrap="nowrap">Activity</td>
<td class="thead" nowrap="nowrap">Posts</td>
<td class="thead" nowrap="nowrap">Join Date</td>
</tr>
$activity_bit
</table>
Create a new template. Name it
activity_bit with the following contents.
HTML Code:
<tr>
<td class="alt1Active" align="left" id="u5968">
<div class="smallfont"><a href="member.php?u=$activity[userid]">$activity[username]</a></div>
<div class="smallfont">$activity[usertitle]</div>
</td>
<td class="alt2" align="center"><div class="smallfont">$ActivityPercent</div></td>
<td class="alt1" align="center">$activity[post]</td>
<td class="alt2" align="center">$activity[joindate]</td>
</tr>
Upload the attached file to your forums directory and you should be all set. You can edit this hack anyway you wish.