PDA

View Full Version : Forum Leaders


Roody
01-22-2003, 03:53 PM
I am looking to find a way to move around the order of which usergroups are listed in my "Forum Leaders" page. Im told this would be a hack? Any ideas?

thomas
01-22-2003, 05:02 PM
I asked for the same thing a few days ago, no reply yet.

Roody
01-23-2003, 02:09 AM
does anyone have any idea regarding this especially now that we have a few people wanting to know?

Roody
01-24-2003, 12:04 PM
bump

Roody
01-25-2003, 12:40 PM
No one has any idea?

Kars10
01-25-2003, 01:12 PM
Explain me what you mean exactly by a Screenshot or something... ;)

Roody
01-25-2003, 04:50 PM
here ya go. for example i want to take one of the groups that is listed in "Forum Leaders" and move it higher up. How would I do this?

Roody
01-27-2003, 04:41 AM
bump

Kars10
01-27-2003, 07:41 AM
Ok Now i know what you mean.
You want for examble change the display-order of your staff in showgroups, right?
Let me think a minute, ...yes you need a hack!
I look into it...but i think this could take a while-im stressed this time!
Stay tuned! :)

Roody
01-27-2003, 06:57 PM
yep thats what I mean. Thanks Kars. :) I will probably bump this every so often for your own reminder. Thx again. :)

Kars10
01-28-2003, 09:38 AM
NP :)

Roody
02-04-2003, 01:57 PM
hey man. Just dropping you a line to see if you have came up with anything yet? :)

Roody
02-08-2003, 10:16 AM
bumping this back up for Kars. :)

Erwin
02-08-2003, 10:58 AM
To change the order of usergroups, you basically need to add the new admin or moderator usergroup, or any other usergroup, into your showgroups.php in the order you want it to appear, by doing this.

To do this, follow these instructions.

1) You need to find out the usergroupid of the usergroup you want to change the order of.

2) Make sure in the Admin CP, Usergroup, Edit, it is set to "Yes" for Showgroups.

3) Assuming this is a new moderator usergroup, which you want to show after the Admin usergroup, but before the Moderator usergroup, do this:

Open showgroups.php:

Find:


if ($usergroupid == 6) { // Admins
eval("\$admininfo .= \"".gettemplate("showgroups_adminbit")."\";");
$admingrouptitle=$user['title'];


BELOW, ADD:


} else if ($usergroupid == XX) { // New usergroup
eval("\$usergroupXX .= \"".gettemplate("showgroups_adminbit")."\";");
$usergroupXXtitle=$user['title'];


Change XX (which occurs THREE TIMES in the code) to the usergroupid you want to add.

You can add multiple copies of this.

4) Then, find:


if ($admininfo) {
if ($admingrouptitle=='') {
$groupname = 'Administrators';
} else {
$groupname = $admingrouptitle;
}
if (substr($groupname,-1)!="s") {
$groupname.="s";
}

$adminbits = $admininfo;
eval("\$groupbits .= \"".gettemplate("showgroups_group")."\";");
}


BELOW, ADD:


if ($usergroupXX) {
if ($usergroupXXtitle=='') {
$groupname = 'NewName';
} else {
$groupname = $usergroupXXtitle;
}
if (substr($groupname,-1)!="s") {
$groupname.="s";
}

$adminbits = $usergroupXX;
eval("\$groupbits .= \"".gettemplate("showgroups_group")."\";");
}


Change XX (which occurs FOUR TIMES) to the usergroupid number, and change 'NewName' to the name of the new Usergroup.

You can add more of these if you wish as well, as long as each of this is paired with additions to the previous section.

That's it! You can work it out yourself, the finer details... :)

SS9267547
04-03-2003, 10:00 AM
Not sure if you know Roody but afterlab released a hack for those wanting to change the order of usergroups. The hacks in the link below. For information on it head on over there.

https://vborg.vbsupport.ru/showthread.php?s=&threadid=48671&highlight=showgroups

Roody
04-03-2003, 05:39 PM
Thx I appreciate the link. :)

SS9267547
04-05-2003, 04:52 AM
No problem, was searching for this myself and noticed your post so I thought I would let you know as well :)