System0 Active member Sep 21, 2016 #1 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
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
Chris D XenForo developer Staff member Sep 21, 2016 #2 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; } Upvote 0 Downvote
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; }
System0 Active member Sep 21, 2016 #3 Thanks Chris. Adding that to my extra.css template fixed it. Much appreciated Upvote 0 Downvote