PDA

View Full Version : Questions regarding groups.


cjnettleingham
09-12-2014, 11:45 AM
Hello Everyone,

I am wondering if anyone knows how to do this or if there is a mod that be able to do it.

On my site i would like to stop people renaming there group names but still allow them to manage there group is this possible or does anyone know a mod for it?

Thanks in advance.

ozzy47
09-12-2014, 08:34 PM
Do this, ACP --> Plugins & Products --> Add New Plugin

Product: vBulletin
Hook Location: group_create_edit
Title: Hide Group Name Change
Plugin PHP Code:
if ($_REQUEST['do'] == 'edit')
{
$show['title'] = false;
}Then click Save

cjnettleingham
09-12-2014, 09:34 PM
Do this, ACP --> Plugins & Products --> Add New Plugin

Product: vBulletin
Hook Location: group_create_edit
Title: Hide Group Name Change
Plugin PHP Code:
if ($_REQUEST['do'] == 'edit')
{
$show['title'] = false;
}Then click Save



It worked :) thank you very much :D

Also is it possible for group admin to be able to make other members admins as well?

tbworld
09-12-2014, 09:38 PM
Elegant @Ozzy47! :)

ozzy47
09-12-2014, 09:42 PM
It worked :) thank you very much :D

Also is it possible for group admin to be able to make other members admins as well?

Not that I can remember off hand. Which in my opnion woud be a very bad idea.

Lets say Joe is a member of group X, and has been made a admin of that group by the group starter Bill. Now Joe gets mad at Joe, then he could go in and delete the group, screwing Bill. :)

ozzy47
09-12-2014, 09:43 PM
Elegant @Ozzy47! :)

Thanks, just something quick I was able to come up with. :)

cjnettleingham
09-12-2014, 09:44 PM
Not that I can remember off hand. Which in my opnion woud be a very bad idea.

Lets say Joe is a member of group X, and has been made a admin of that group by the group starter Bill. Now Joe gets mad at Joe, then he could go in and delete the group, screwing Bill. :)

Thank you for answering. :)

ozzy47
09-12-2014, 09:47 PM
Not a problem. :)