Find in member.php:
PHP Code:
eval("dooutput(\"".gettemplate("getinfo")."\");");
Add BEFORE it:
PHP Code:
if($bbuserinfo[usergroupid]==6) {
eval("\$admin .= \"".gettemplate("getinfo_admin")."\";");
} else {
$admin="";
}
Open template getinfo and find:
PHP Code:
<table cellpadding="2" cellspacing="0" border="0" width="{contenttablewidth}" {tableinvisibleextra} align="center">
<tr>
<td align="center"><smallfont><b>
Administrative Options: <a href="moderator.php?s=$session[sessionhash]&action=useroptions&userid=$userinfo[userid]">User Options</a>
</b></smallfont></td>
</tr>
</table>
And REPLACE it with:
Make a new template with the name: getinfo_admin
PHP Code:
<table cellpadding="2" cellspacing="0" border="0" width="{contenttablewidth}" {tableinvisibleextra} align="center">
<tr>
<td align="center"><smallfont><b>
Administrative Options: <a href="moderator.php?s=$session[sessionhash]&action=useroptions&userid=$userinfo[userid]">User Options</a>
</b></smallfont></td>
</tr>
</table>
Done.