XF 1.5 How Do You Hide the Inbox Link(Icon) if Messaging is Disabled?

System0

Active member
I have completely disabled private messaging on my forum. As such, I do not want any links to the conversations page.

How do I stop the conversations link/icon from displaying altogether.

Thanks,
Kevin
 
You can either edit it out of the navigation_visitor_tab template or hide it using EXTRA.css:

Code:
.navTabs .navTab.inbox
{
    display: none !important;
}
 
Top Bottom