News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Statics Index Help

Started by Matias-, November 03, 2021, 07:31:03 PM

Previous topic - Next topic

Matias-

Hi, a while ago I saw a tutorial to add some statistics to the forum index, but I can't find it.

I want to achieve this:


Dzonny

I'm unsure if there's a mod which would do that, but I made that manually on my forum by editing Index.template.php and using few variables:
$context['common_stats']['total_posts']      -- For total posts
$context['common_stats']['total_topics']     -- For total topics
$context['common_stats']['total_members']    -- For total members 
For online users I made a sum of guests and members like this:
$onlineusers = $context['num_guests'] + $context['num_users_online'];And then I just echo-ed that.

Advertisement: