Skip to main content
Member count stats. Started by fritzelly · · Read 1454 times 0 Members and 1 Guest are viewing this topic. previous topic - next topic

Member count stats.

Can anyone point me to the code that calculates the member count in the footer stats
I need to exclude archived members to show a real count - tried some changes in multiple pages but didn't make any difference.

Thanks

p.s thanks for a great, clean, fast and feature rich forum

Re: Member count stats.

Reply #1

How do you "archive" members?

The value is "prepared" in themes/default/Theme.php line:
Code: [Select]
			'total_members' => comma_format($modSettings['totalMembers']),
for removing some you can:
Code: [Select]
			'total_members' => comma_format($modSettings['totalMembers'] - 100),

TBH it's not a solution I like that much, but I guess it could do.
Bugs creator.
Features destroyer.
Template killer.

 

Re: Member count stats.

Reply #2

Thanks