Written by Simon
Format your statistics on index like here.
Instructions:
Open index.php
Find:
Code: Select all
'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
Code: Select all
'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], number_format($total_posts, 0, ',', '.')),
'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], number_format($total_topics, 0, ',', '.')),
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], number_format($total_users, 0, ',', '.')),
Find:
Code: Select all
'TOTAL_POSTS_OTHER' => 'Total posts <strong>%d</strong>',
Code: Select all
'TOTAL_POSTS_OTHER' => 'Total posts <strong>%s</strong>',
Code: Select all
'TOTAL_TOPICS_OTHER'=> 'Total topics <strong>%d</strong>',
Code: Select all
'TOTAL_TOPICS_OTHER'=> 'Total topics <strong>%s</strong>',
Code: Select all
'TOTAL_USERS_OTHER' => 'Total members <strong>%d</strong>',
Code: Select all
'TOTAL_USERS_OTHER' => 'Total members <strong>%s</strong>',