Try this, untested but may work
Open up index.php, find:
PHP Code:
eval("dooutput(\"".gettemplate('forumhome')."\");");
add above
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 place $totalviews anywhere you want in forumhome template