Quote:
Originally Posted by 4number8
How would I add another usergroup to the AdminCP part here.....
|
I went another way in doing that job. To add a Top Menu in the Top navbar is always the same. I've changed mine completely through TMS and here's the result of the Top Menu...
HTML Code:
<!-- ******************************* -->
<!-- * 1. TOP-NAVBAR 'LINKS' -->
<!-- ******************************* -->
<templateedits product="vbulletin" version="3.6.8">
<templateedit template="navbar" varname="top_navbar_links" username="MikeD" version="3.6.8">
<title>Top Navbar 'Links'</title>
<searchstr><![CDATA[<!-- breadcrumb, login, pm info -->]]></searchstr> <!-- Spot where the Top navbar starting at! -->
<replacestr><![CDATA[<!-- breadcrumb, login, pm info -->
<!-- Top Navbar -->
<if condition="$show['member']">
<div align="center">
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr align="center">
<td class="vbmenu_control"><a href="/vbulletin/upload/index.php">$vbphrase[forum]</a></td>
<td class="vbmenu_control"><a href="/vbulletin/upload/portal.php">$vbphrase[portal]</a></td>
<td class="vbmenu_control"><a href="/vbulletin/upload/photoplog/index.php">$vbphrase[gallery]</a></td>
<td class="vbmenu_control"><a href="/vbulletin/upload/arcade.php">$vbphrase[arcade]</a></td>
<td class="vbmenu_control"><a href="/vbulletin/upload/chat/flashchat.php">$vbphrase[chat]</a></td>
<!-- <td class="vbmenu_control"><a href="$vboptions[contactuslink]" rel="nofollow">$vbphrase[contact_us]</a></td> -->
<td class="vbmenu_control"><a href="impressum.php">Impressum</a></td>
<!-- Administrators & Super Moderators Only -->
<if condition="in_array($bbuserinfo['usergroupid'], array(5,6))"> <!-- Primary Usergroups! -->
<td id="admin_links" class="vbmenu_control"><a href="#">Admin/Mod</a><script type="text/javascript"> vbmenu_register("admin_links"); </script></td>
</if>
</tr>
</table>
</div>
</if>
<!-- / Top Navbar -->]]></replacestr>
</templateedit>