Here is the 10 minute hack:
Edit forumdisplay.php and find at line 160 in 1.1.3beta2
Code:
$views=$thread[views];
and change to:
Code:
$views=$thread[views];
if ($views >= 100)
{
$views = "<img src=\"images\newhotfolder.gif\" Alt=\"$views views\" border=\"0\""
}
Of course change the image to whatever image you want and if you want it to change as views get higher and higher just put something like this:
Code:
$views=$thread[views];
if ($views >= 100 && $views <= 200)
{
$views = "<img src=\"images\newhotfolder.gif\" Alt=\"$views views\" border=\"0\"";
}
if ($views > 200 && $views <= 400)
{
$views = "<img src=\"images\newhotterfolder.gif\" Alt=\"$views views\" border=\"0\"";
}
I put this hack in my board and you can see it at:
http://www.hedgehogwheels.com/forums...php?forumid=26
We need a nice gif to use, any suggestions?