Open your index.php in your main forum directory.
Look for this at the bottom:
PHP Code:
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('FORUMHOME') . '");');
Above this add:
PHP Code:
// Total Members
$totalPosts = $DB_site->query_first("SELECT max( postid ) AS total FROM " . TABLE_PREFIX . "post");
Open your FORUMHOME template, and add $totalPost[total] wherever you want it to display.