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)
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.