It would be nice if the members.module supported multiple pages. As the members list grows, it becomes very unwieldy to have all members listed on the same page (currently we have 151 members, and growing by 1 to 3 a week on average).

It would be nice at least if there was simple usage of the pagination feature so only "N" (settable in the Admin modules) number of members are shown at a time. Better yet, a simple "A | B | C | D ..." link system at the top that would allow a member to click on an alphabet letter that would only pull those usernames starting with that letter. I guess this could be two feature requests...

v/r
Shane

Comments

killes@www.drop.org’s picture

This was added to the cvs version.

Anonymous’s picture

ighost’s picture

Category: feature » support

Description

It would be nice if the members.module supported multiple pages. As the members list grows, it becomes very unwieldy to have all members listed on the same page (currently we have 151 members, and growing by 1 to 3 a week on average).

It would be nice at least if there was simple usage of the pagination feature so only "N" (settable in the Admin modules) number of members are shown at a time. Better yet, a simple "A | B | C | D ..." link system at the top that would allow a member to click on an alphabet letter that would only pull those usernames starting with that letter. I guess this could be two feature requests...

v/r
Shane

******

Version: 4.2.0 » cvs
Status: active » fixed

This was added to the cvs version.

This feature seems to be missing from the 4.5.0 version.
// $Id: members.module,v 1.36 2004/11/24 22:03:32 dries Exp $

Is there a setting im over looking?
Thanks.

debwire’s picture

I, too, would like to see this option with the ability to set how many members should be listed on each page. It doesn't seem to be fixed in the latest version or the cvs version.

michalska’s picture

Version: » 4.6.x-1.x-dev
Category: support » feature

I don't know how to use patch yet, so I will list the lines needed to be changed/inserted:

+15 in function members_settings()
$output .= form_textfield(t("Members on page"), "members_number", 25, 5, 5);
//set the default number of members to be listed on each page to 25

+40 in function members_page($rids = null) {
$listlength = variable_get("members_number", 25);

//in function members_perm() {
-84
+84 $result = pager_query($query, $listlength);

-127
+127 if ($pager = theme("pager", NULL, $listlength, 0, tablesort_pager())) {

wmostrey’s picture

Status: Active » Fixed
killes@www.drop.org’s picture

Status: Fixed » Closed (fixed)