MyBB Community Forums

Full Version: Cant see Groups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I cant check group info like http://forums.fbi-clans.net/index.php?ac...oups&gid=4 when i go here it should show me Leader of Group and its members but it is not showing me nothing :/ help me please
What are you trying to accomplish?
check this sir http://board.twcclan.org/index.php?actio...oups&gid=4 i want something like this but in my forums it wont work
They must be using some sort of plugin or modification because by default MyBB doesn't have any feature like that. You can either view admins on the showteam page or via the ACP.

Edited

If I'm correct, the following plugin should do the trick.

Link: http://forums.mybb-plugins.com/Thread-View-Groups-1-5 OR http://mods.mybb.com/view/view-groups => Same plugin but two different download links.
yeah thanks sir but what i have seen is this , that the groups is not in a order they have been just placed i want to add 1st Higher rank then smaller then that then same so any idea how can i?

help?
Go to ACP>Users and groups>Groups
You should see a column called order. Order your groups there.

Sorry for not being to clear because I'm typing this post from my iDevice.
yeah i tried that but still same :/ www.forums.fbi-clans.net

Yeah! tankey helped me make this work

He edited the .php file and in it edit the query file this one

$query = $db->simple_select("usergroups", "gid,title,namestyle", "gid NOT IN ('".str_replace(',', '\',\'', $mybb->settings['viewgroups_groups'])."')");
Replace with
$query = $db->simple_select("usergroups", "gid,title,namestyle", "gid IN ('".str_replace(',', '\',\'', $mybb->settings['viewgroups_groups'])."') ORDER BY FIELD(gid, ".$mybb->settings['viewgroups_groups'].")");


and in ACP, Settings , View groups, add the ids of groups which u wanna show in the list with the order what u want and donot add the ids which u dont want to show in the list
Done Big Grin