Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: Matias- on November 03, 2021, 07:31:03 PM

Title: Statics Index Help
Post by: Matias- on November 03, 2021, 07:31:03 PM
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:

(https://i.imgur.com/QwyBo3M.png)
Title: Re: Statics Index Help
Post by: Dzonny on November 04, 2021, 05:29:37 AM
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.