My latest hack does this, and I released it somewhere else in this forum, but here it is again:
Open index.php, find:
PHP Code:
eval("dooutput(\"".gettemplate('forumhome')."\");");
Above add:
PHP Code:
// 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 add $totalviews anywhere in the forumhome template