Log in

View Full Version : looking for a hack


weirdpixels
09-01-2003, 02:54 PM
Hi I was wondering if anyone could point me in the direction. I am looking for the hack that adds the number of page views next to the total number of posts on the board. On forumhome.

Any idea where I could find this hack would be useful if you could post the link.

Thanks

assassingod
09-01-2003, 03:01 PM
Try this, untested but may work

Open up index.php, find:

eval("dooutput(\"".gettemplate('forumhome')."\");");

add above

// get total views of entire forum
$threadviews=$DB_site->query_first('SELECT COUNT(*) AS threads, SUM(views) AS views FROM thread');
$totalviews=number_format($threadviews['views']);

then place $totalviews anywhere you want in forumhome template