There are 3 versions of the Hide Tab Code: Hide Specific Tabs, Hide Tabs From Guests, Hide All Tabs
If you do not already have it add the JQuery include to your headers.
<script src="/jquery.js"></script>
1.
TO HIDE SPECIFIC TABS* The Code goes in your Footer
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Help)").hide();
</script>
Replace
Help with the name of the tab you want to hide.
Add/edit more of these lines if you need them:
$("table tbody tr td.maintab_back:contains(Help)").hide();
2.
TO HIDE TABS FROM GUESTS* The Code goes in your Footer
<script>
if(!$('td.titlebg2 span b').not($("td.titlebg2 span b:contains(News)")).html())
{
$("table tbody tr td.maintab_back:contains(Help)").hide();
}
</script>
Replace
Help with the name of the tab you want to hide.
Add/Edit more of these lines if you need them:
$("table tbody tr td.maintab_back:contains(Help)").hide();
3.
To Hide ALL Tabs:* The Code goes in your Footer
<script>
$("table tbody tr td.maintab_back:contains(Help)").parent().parent().hide();
$("table tbody tr td.maintab_active_back:contains(Help)").parent().parent().hide();
</script>