Log in

View Full Version : Top Posters per Forum (shown in forumdisplay)


Gary King
06-06-2004, 10:00 PM
What does this hack do?

This hack shows the top poster in each forum, in the forumdisplay template (so when viewing the forum, you can see the top poster for that forum).

The line that displays the top poster for the forum is in the template, so you can move it anywhere you want it to show up! :)

View screenshots for examples!

Instructions

Open forumdisplay.php and findeval('print_output("' . fetch_template('FORUMDISPLAY') . '");');add above (change $topposterno to how many top posters per forum you want to show)// Top Posters Per Forum hack v1.0 by Gary W.
$topposterno = 5;

$topposter = $DB_site->query("SELECT COUNT(post.postid) AS posts,userid,username FROM " . TABLE_PREFIX . "post AS post
LEFT JOIN " . TABLE_PREFIX . "thread AS thread ON post.threadid = thread.threadid
LEFT JOIN " . TABLE_PREFIX . "forum AS forum ON forum.forumid = thread.forumid
WHERE forum.forumid=$forumid
GROUP BY userid ORDER BY posts DESC LIMIT 0, $topposterno");

$topposterno2 = $topposterno;

while ($top = $DB_site->fetch_array($topposter))
{
$topposterno--;

if ($topposterno == 0)
{
$and = "and ";
$final = "!";
}

eval ('$topposters .= "' . $comma . fetch_template('topposters') . '";');
//eval ("\$topposters .= \"" . $comma . fetch_template("topposters"). "\";");
$comma = ",";
}open FORUMDISPLAY template and find $navbarbelow add <td><span class="smallfont">This forum's top $topposterno2 posters are: $topposters</span></td>add a template named topposters with following content$and<b><a href="member.php?$session[sessionurl]u=$top">$top[username]</a></b> with <b>$top[posts]</b> posts$final



[u]OPTIONAL STEPS

If you want it to work faster (on large boards especially),
then run the following query on your database:

ALTER TABLE post ADD INDEX (username);

lifesourcerec
06-07-2004, 12:24 AM
Thanks! Now, is there a way to put it in a table (something simple like the "attached thumbnails" box). would make them look more organized.

Gary King
06-07-2004, 12:35 AM
I'm not one for cosmetics; so if someone wants to give some HTML code on where it should go, then be my guest, and please share it as well :) I just provide the functionality :p

lifesourcerec
06-07-2004, 12:40 AM
Installed it without problems :)

MindTrix
06-07-2004, 05:46 AM
Nice one Gary ;) Thanks for releasing

lifesourcerec
06-07-2004, 10:26 PM
Removed this hack as it does a number on server load.

HakkieDEV
06-13-2004, 05:31 PM
Removed this hack as it does a number on server load.

I agree, also installed this hack, but even with the database fix it created too much server load.

Photon
06-19-2004, 11:03 AM
I installed it but I removed it because it doesn't look nice for my style..

dubumb
07-18-2004, 01:53 AM
wow thanks... This is such a great hack... Thank you so much!!!!

SmartGnome
08-01-2004, 06:00 PM
Thanks for the hack, install clicked........ and now is the time to play with some cosmetics here :laugh:

Reeve of shinra
08-01-2004, 11:35 PM
How many queries does this add?

Overlord
09-26-2004, 11:16 AM
Is there any way someone can mod this hack into the vb2 style of showing a forums top posters? I want this hack but it doesn't really fit the way it is, I would prefer that it would make the forums 'replies' on the forumhome a link, so when you click it a vb3 style dropdown box opens with the top however many posters.

I could possibly mod this hack myself to do what I want, but I'm fairly new to this and I'm not sure if A: It'll work o.o, or B: the loading times that it will add to the forumhome.

VriendP
09-29-2004, 09:11 PM
I think you could make this code more efficient by grabbing a template once, instead of grabbing it for each user in the list...

But I'm not sure if that would reduce the amount of queries though, just seems logical.

Nice hack, I'll play with it! :D

Neutral Singh
10-30-2004, 09:24 AM
Gary, you are wonderful !! :)

hollyboy
05-22-2005, 05:39 PM
would it be possible to see the top posters per forum all on one page?

vktechnology
06-05-2005, 10:02 PM
good hack, i just install

zylstra
01-27-2006, 06:20 PM
Gary, would you port this to 3.5 please?

Thanks.