Niley Posted October 9, 2019 Share Posted October 9, 2019 Hello, I am attempting to remove a menu item from the client sidebar when viewing domain details (the "Modify Nameservers" item). I can add the code below to the registrar module's hooks.php file, and the menu item is removed, however this same hook also affects every other registrar module. Is it possible to determine the module name within hooks.php so that a condition can be added to only apply the hook to the particular registrar module I wish to affect ? add_hook('ClientAreaPrimarySidebar', 1, function(MenuItem $primarySidebar) { if (!is_null($primarySidebar->getChild('Domain Details Management'))) { $primarySidebar->getChild('Domain Details Management') ->removeChild('Modify Nameservers'); } }); Thank you for your assistance, Niall. 0 Quote Link to comment Share on other sites More sharing options...
Niley Posted October 9, 2019 Author Share Posted October 9, 2019 A good sleep and I woke up with Menu::context('domain') on my mind, getting me what I need. Thanks anyways! 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.