kappagram Posted October 13, 2018 Share Posted October 13, 2018 Can you help me to hide the Contact Us page from the menu? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 14, 2018 Share Posted October 14, 2018 15 hours ago, kappagram said: Can you help me to hide the Contact Us page from the menu? the official documented method would be to use an action hook - create a .php file in /includes/hooks; call it removecontactus.php (or anything you like) and paste the code below into it.. <?php # Remove Contact Us Menu Item Hook # Written by brian! use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar) { if (!is_null($primaryNavbar->getChild('Contact Us'))) { $primaryNavbar->removeChild('Contact Us'); } }); an alternative solution would just be to edit /templates/six (or custom)/css/custom.css and add the code below to it.. #Primary_Navbar-Contact_Us { display: none; } the hook will remove the link from the menu bar; the css will just visibly hide it - either way, the customer won't see it. 1 Quote Link to comment Share on other sites More sharing options...
kappagram Posted October 14, 2018 Author Share Posted October 14, 2018 Thank you very - very much! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.