here's the code i used for the 6th admin and super/mod tab
In the <!-- begin postbit tabs --> section add:
Code:
<if condition="$show['modcplink']">
<li><span title="Admin Tab"><a href="#" rel="tab6$post[postid]"> </a></span></li>
</if>
wherever you want your tab to show, i added it after the 5th tab and therefor called it tab 6
below the </div> of
tab 5 content add:
Code:
<!-- TAB 6 CONTENT -->
<div id="tab6$post[postid]" class="tabcontent">
<div>
<if condition="($bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==7 || $bbuserinfo[usergroupid]==5)">
<span onmouseover="this.style.cursor='hand';" onClick="window.open('modcp/banning.php?do=banuser&userid=$post[userid]','ban','width=500,height=375,scrollbars=yes')"><a>Ban $post[username]</a></span>
</if>
</div>
<div>
<if condition="($bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==7 || $bbuserinfo[usergroupid]==5)">
<span onmouseover="this.style.cursor='hand';" onClick="window.open('modcp/banning.php?do=liftban&userid=$post[userid]','liftban','width=500,height=375,scrollbars=yes')"><a>Lift Ban on $post[username]</a></span>
</if>
</div>
</div>
and voila a 6th tab for your mods and admin containing the ban and unban links that open in a pop up with cudos to
https://vborg.vbsupport.ru/showthread.php?t=93057 for the idea