tejli007 Posted February 21, 2021 Share Posted February 21, 2021 Dear Comunity, dear Brian 🙂  Any chance to remove the register domain tab from clientarea home but ONLY FOR one client group.  Here is the hook but its global. It should added some code like if clientgroup x then show else do not show. Unfortunatly am not the one who knows how to do it thats why please help me 🙂   <?php use WHMCS\View\Menu\Item; add_hook('ClientAreaHomepagePanels', 1, function (Item $homePagePanels) { $homePagePanels->removeChild('Register a New Domain'); });  0 Quote Link to comment Share on other sites More sharing options...
brian! Posted February 22, 2021 Share Posted February 22, 2021 21 hours ago, tejli007 said: Here is the hook but its global. It should added some code like if clientgroup x then show else do not show. Unfortunatly am not the one who knows how to do it thats why please help me 🙂 <?php # Remove Domain Register HomePagePanel Based On Client Group Hook # Written by brian! use WHMCS\View\Menu\Item; add_hook('ClientAreaHomepagePanels', 1, function (Item $homePagePanels) { $client = Menu::context('client'); $groupid = $client->groupId; if ($groupid == 8) { $homePagePanels->removeChild('Register a New Domain'); } });  1 Quote Link to comment Share on other sites More sharing options...
tejli007 Posted February 22, 2021 Author Share Posted February 22, 2021 4 hours ago, brian! said: <?php # Remove Domain Register HomePagePanel Based On Client Group Hook # Written by brian! use WHMCS\View\Menu\Item; add_hook('ClientAreaHomepagePanels', 1, function (Item $homePagePanels) { $client = Menu::context('client'); $groupid = $client->groupId; if ($groupid == 8) { $homePagePanels->removeChild('Register a New Domain'); } });  Thank you Mate! Am on mobile so am not a ke to test it in the next days but am sure it will work. You saved the community a lot of time. Really thank you. Add some donation link in your signature. 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.