I would like to remove the link in Navigation tab (similar to this forum). I have a link in footer to add documents. Thanks
Hello, You can remove the link in Navigation tab by open file \library\Brivium\DocumentationsCreator\EventListener\Listener.php, find and remove following code Code: if(XenForo_Visitor::getInstance()->hasPermission('BR_DocumentCreator', 'BRDC_canViewDocument')) { $extraTabs['brdc-document'] = array( 'title' => new XenForo_Phrase('BRDC_documentations'), 'href' => XenForo_Link::buildPublicLink('full:brdc-document'), 'position' => 'middle', ); } Regards,