Log in

View Full Version : Is this possible?


midnightz
08-04-2003, 07:48 PM
Hi all,

I would like to know if it is possible to have catagory moderators, be able to mod the forums in a catagory, but not show up in every forum as a moderator.

I guess I want catagory supermods :)

As you can see from the image below - jaimejim shows up in each forum, he is the one I made the catagory mod. How can I make it where he has his mod powers, but wont show up in the mod list.

I want them only to be listed on the forum leaders page.

Thank you -

midnightz

Gary King
08-05-2003, 01:06 AM
What you have right now is a template modification. Just remove the moderators part in its corresponding template; search for Moderated by in your templates.

midnightz
08-05-2003, 01:11 AM
Hi, I know that, I want to keep that, but not have the catagory mod show up?

Thats what I need help with

Gary King
08-05-2003, 01:08 PM
Ah I understand now.

You could modify this query so that it won't SELECT the userids that you specify. This is the original:$forummoderators=$DB_site->query('SELECT user.userid,user.username,moderator.forumid
FROM moderator
LEFT JOIN user
ON (moderator.userid=user.userid)
ORDER BY user.username');

Modified$forummoderators=$DB_site->query('SELECT user.userid,user.username,moderator.forumid
FROM moderator
LEFT JOIN user
ON (moderator.userid=user.userid)
WHERE user.userid != 1
ORDER BY user.username');

The modified version won't show moderators who have the userid of 1; it's simple yet effective, but a big problem with this is if you have a user(s) that is and isn't a category moderators.

midnightz
08-07-2003, 01:58 AM
Thanks :)

Gary King
08-07-2003, 02:15 AM
Glad I could help :)

Blizzb
08-07-2003, 03:03 PM
How do I add usernames to "Forum Leaders"?

Gary King
08-07-2003, 03:20 PM
Today at 12:03 PM Blizzb said this in Post #7 (https://vborg.vbsupport.ru/showthread.php?postid=424114#post424114)
How do I add usernames to "Forum Leaders"?

What exactly do you want to do?

Blizzb
08-07-2003, 07:39 PM
Well when I add mods, the their usernames should show up under "Moderators" but there's nothing and I would like to know how to add the names.

Gary King
08-07-2003, 10:57 PM
Today at 04:39 PM Blizzb said this in Post #9 (https://vborg.vbsupport.ru/showthread.php?postid=424156#post424156)
Well when I add mods, the their usernames should show up under "Moderators" but there's nothing and I would like to know how to add the names.

This made absolutely no sense :rolleyes:
But, you can check out some of my hacks for showgroups.php; you can add and remove moderators from that page, and also add and remove users as well.

g-force2k2
08-08-2003, 05:26 AM
for adding them to the showgroups ( forumleaders ) theres an option for that when editing usergroups...

regards,
g-force2k2

Blizzb
08-08-2003, 02:02 PM
I know. It should be set to "yes" for "Show Groups" but it still doesn't display the names in "Forum Leaders"

midnightz
08-11-2003, 11:10 PM
I think you have a hack or an error in your file you can make any group appear in the forum leaders. try getting rid of the group and doing it from scratch