Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

Display stats in footer

$
0
0
Open ./global.php and find:
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']}

Viewing all articles
Browse latest Browse all 690

Trending Articles