PDA

View Full Version : Moderator of 1 forum with ModCP option.


GotWalked
03-06-2009, 11:32 PM
What I'm looking to do is add a user to a moderator of 1 particular forum, and give him access to the Mod CP. Think of it like this. You register to my forum, you must be approved first, then make a thread in my intro category, and then once that gets screened, you get your account bumped up to a regular account.

I have a moderator to do this for me instead of myself. If I make him a moderator as an additional user, he can moderate all forums but also has access to the Mod CP. If I add him as just a moderator to that particular forum, he can moderate it just fine, but cannot do the user registrations nor upgrade accounts because he doesn't have access to the Mod CP.

What can I do to resolve this?


P.S.: and yes, I have the Moderator New User Registrations Hack and the Nestaron's ModCP User Administration hacks installed so the mods can edit what they need to.

--------------- Added 1236412290 at 1236412290 ---------------

Bumped Please.

--------------- Added 1236456017 at 1236456017 ---------------

Anyone?

Marco van Herwaarden
03-09-2009, 02:35 PM
Also a regular moderator has access to the ModCP, but he will need to know the link as no option is shown in the footer.

GotWalked
03-10-2009, 04:02 AM
Also a regular moderator has access to the ModCP, but he will need to know the link as no option is shown in the footer.

Maybe that's an idea for a feature version?

Marco van Herwaarden
03-10-2009, 10:30 AM
No it is left out on purpose as it would add a number of queries to each page load.

popowich
03-10-2009, 01:29 PM
Hello,

You can add/tweak the following to your navbar to create a convenient link:

<if condition="$bbuserinfo[usergroupid] == 6">
<td class="vbmenu_control"><a href="$admincpdir/index.php$session[sessionurl_q]">AdminCP</a></td>
</if>
<if condition="$bbuserinfo[usergroupid] == 5">
<td class="vbmenu_control"><a href="$modcpdir/index.php$session[sessionurl_q]">ModCP</a></td>
</if>

You'll want to add a block for usergroup 6 too.

-Raymond