I have looked all over and haven't found any statistics on the number of site members I have. I can see how many visitors my site has had, but I just want a simple total of the number of people who have joined the site as members. I know this information must be somewhere, but I can't find it. Any help would be greatly appreciated. Thanks!
You can use the Members module to get a list of members. The only easy way to count them I can think or is to copy the list and paste it into a spreadsheet or a text editor that displays line numbers.
If your site has less than 100 members then you can list the row number of the members module table by adding a CSS module as follows:
[[module CSS]]
table {
counter-reset: line-number;
}
td:first-child:before {
content: counter(line-number) ".";
counter-increment: line-number;
padding-right: 0.3em;
}
[[/module]]
[[module Members]]
The result is:

The reason it won't work with more than 100 members is that as far as I recall the members module only puts 100 members on a page, and when you go the next page the numbering starts from 1 again.
Rob Elliott - Strathpeffer, Scotland - Wikidot first line support & community admin team.
Alternatively, if you have per-site profiles running — you can simply use the CountModule to list the number of "current" profiles.
e.g.
[[module CountPages category="profile" tags="+_current"]]
%%count%% users
[[/module]]
Kenneth Tsang (@jxeeno)
if you wish to have a nice listing like the watchers module, just include the following code
[[include :csi:include:memberlook]]
A - S I M P L E - P L A N by ARTiZEN a startingpoint for simple wikidot solutions.
Thanks Rob!
Exact the fact of the paging layout of 100 entries makes it so easy now!
I changed our own members page here to your CSS module: http://community.wikidot.com/system:members
and I can see on the last page (3.) the ending number of 59 which means this wiki have 259 members !
( every page before the last = hundred)
I think it is time for a new howto!
Service is my success. My webtips:www.blender.org (Open source), Wikidot-Handbook.
Sie können fragen und mitwirken in der deutschsprachigen » User-Gemeinschaft für WikidotNutzer oder
im deutschen » Wikidot Handbuch ?
I created a Howto Count members ..
Service is my success. My webtips:www.blender.org (Open source), Wikidot-Handbook.
Sie können fragen und mitwirken in der deutschsprachigen » User-Gemeinschaft für WikidotNutzer oder
im deutschen » Wikidot Handbuch ?
This is very helpful. Thanks to all of you!!