Open ./global.php and find:
and add the following code just below that..
Stats vars will work globally now..
{$stats['numposts']} {$stats['numusers']} {$stats['numthreads']} and {$stats['newest_user']}
PHP Code:
$plugins->run_hooks("global_start");
and add the following code just below that..
PHP Code:
$stats = $cache->read("stats");
$stats['newest_user'] = build_profile_link($stats['lastusername'], $stats['lastuid']);
$total_posts = my_number_format($stats['numposts']);
$total_users = my_number_format($stats['numusers']);
Stats vars will work globally now..
{$stats['numposts']} {$stats['numusers']} {$stats['numthreads']} and {$stats['newest_user']}