XF 1.3 Remove Resources Tab

iguanairs

Member
I want to remove the resources tab completely. I have no use for the tab itself in the manner I am using the software. I ran some searches on this site and on google but came up empty. This shouldn't be difficult but it is eluding me. (I went through templates looking as well.)
 
I'm also having problems to get it the way I want.
I do not want to have it in the navigation, but I still want members to access it.
How do I do that with the permission?
 
In XF1, I'm not sure that specifically would be possible without a further add-on. (The navigation management systems in XF2 would allow you to disable the navigation entry independent of permissions.)
 
In XF1, I'm not sure that specifically would be possible without a further add-on. (The navigation management systems in XF2 would allow you to disable the navigation entry independent of permissions.)
Just solved it with css instead in extra.css

CSS:
.navTabs .navTab.resources .navLink,
{
    display: none;
}
 
Top Bottom