Adeolberto Posted January 23, 2019 Share Posted January 23, 2019 how i hide this widget TICKETS in member area ? http://prntscr.com/mau1d5 0 Quote Link to comment Share on other sites More sharing options...
pRieStaKos Posted January 23, 2019 Share Posted January 23, 2019 (edited) https://docs.whmcs.com/Working_With_Client_Area_Home_Page_Panels#Modifying_an_existing_panel Read the above and replace getChild() with removeChild() (remove the if() code) <?php use WHMCS\View\Menu\Item; add_hook('ClientAreaHomepagePanels', 1, function (Item $homePagePanels) { $homePagePanels->removeChild('Recent Support Tickets'); }); Edited January 23, 2019 by pRieStaKos 1 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.