EvanH Posted June 2, 2016 Share Posted June 2, 2016 (edited) Dear, I want to remove this prntscr.com/bbgs32 in the clientarea. Where is this located? Thanks for helping! Edited June 2, 2016 by Infopro Please Attach Images to Your Posts 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted June 2, 2016 Share Posted June 2, 2016 create new PHP file inside /includes/hooks/ directory (eg. hidehomepagenews.php) and put the following code inside it <?php use WHMCS\View\Menu\Item; add_hook("ClientAreaHomepagePanels", 1, function(Item $homePagePanels){ if (!is_null($homePagePanels->getChild('Recent News'))){ $homePagePanels->removeChild('Recent News'); } }); 0 Quote Link to comment Share on other sites More sharing options...
EvanH Posted June 2, 2016 Author Share Posted June 2, 2016 Thank you very much! It works perfect. 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.