ElkArte Community

Project Support => Support => Topic started by: fritzelly on August 21, 2018, 07:42:04 am

Title: Member count stats.
Post by: fritzelly on August 21, 2018, 07:42:04 am
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
Title: Re: Member count stats.
Post by: emanuele on August 22, 2018, 02:29:16 am
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.
Title: Re: Member count stats.
Post by: fritzelly on August 22, 2018, 05:37:00 am
Thanks