This is 100% untested, but looking at the raw output of the navbar template on a stock board it should hopefully work. 4.1.1+ now uses a template runtime method to build the forumhome link so I have adjusted the plugin accordingly.
To get the forum to hide (on a DEFAULT 4.1.1) navbar template, try this:-
Go to plugin manager.... edit the Insertando Tabs plugin.
Find:
Code:
$buscar[0] = '<li class="selected"><a class="navtab" href="\' . $vboptions[\'forumhome\'] . \'.php\' . $session[\'sessionurl_q\'] . \'">\' . vB_Template_Runtime::parsePhrase("forum") . \'</a>';
$buscar[1] = '<li><a class="navtab" href="\' . $vboptions[\'forumhome\'] . \'.php\' . $session[\'sessionurl_q\'] . \'">\' . vB_Template_Runtime::parsePhrase("forum") . \'</a></li>';
Replace with:
Code:
$buscar[0] = '<li class="selected"><a class="navtab" href="\' . vB_Template_Runtime::linkBuild("forumhome") . \'">\' . vB_Template_Runtime::parsePhrase("forum") . \'</a>';
$buscar[1] = '<li><a class="navtab" href="\' . vB_Template_Runtime::linkBuild("forumhome") . \'">\' . vB_Template_Runtime::parsePhrase("forum") . \'</a>';
I MUST STRESS, I am not in a position to test this.... I am NOT the Mod author.... AND if this doesnt work then I CANT support you.