Support Forum

How to change the order of member groups

KI Kimi
Kimi
Member

Hi there,

I’d just like to change the order of the member groups on the “members” page (like so: https://simple-press.com/support-forum/members/), so I can have moderators after the admins, and order the rest of my members in consecutive order. I just need to know what template file I need to edit and the code to look for.

 

Thanks!

1 Answer

New Answer

MP Mr Papa
Mr Papa
Member

I am no sure what you mean… you cannot really specify an ordering except by ID or alphabetical name…

we dont do any specific ordering here…  but we do control which user groups we do show and do not limit the usergroups displayed to ones users belong to…

the default template tag in spMembersView.php template file is:

            if (sp_has_member_groups(‘usergroup’, ‘id’, ‘asc’, 15, true)) {

but we use:

            if (sp_has_member_groups(‘usergroup’, ‘id’, ‘asc’, 15, false, ‘3,8,9,10’)) {

where 3,  8, 9 and 10 are the only usergroups that we want to show…  they will not be in the specified order, but sorted by ID (which happens to be the same in this case)..