techwthquestion Posted January 4, 2021 Share Posted January 4, 2021 (edited) Hello team in whmcs 8 is there any way to remove this box? and use full space for space for system settings options? Edited January 4, 2021 by techwthquestion 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 4, 2021 Share Posted January 4, 2021 5 minutes ago, techwthquestion said: in whmcs 8 is there any way to remove this box? and use full space for space for system settings options? I posted the hook below previously in the v8 beta forums.... of course, the thread has got deleted.... when will i ever learn not to post code in the beta forums? <?php function admin_custom_css_hook($vars) { $head_return = '<style>.col-md-8 {width: 100% !important} .tasks {display: none;}</style>'; return $head_return; } add_hook("AdminAreaHeaderOutput",1,"admin_custom_css_hook"); 4 Quote Link to comment Share on other sites More sharing options...
techwthquestion Posted January 4, 2021 Author Share Posted January 4, 2021 10 minutes ago, brian! said: I posted the hook below previously in the v8 beta forums.... of course, the thread has got deleted.... when will i ever learn not to post code in the beta forums? <?php function admin_custom_css_hook($vars) { $head_return = '<style>.col-md-8 {width: 100% !important} .tasks {display: none;}</style>'; return $head_return; } add_hook("AdminAreaHeaderOutput",1,"admin_custom_css_hook"); Thank you Brian! Thats perfectly worked ! ❤️ 0 Quote Link to comment Share on other sites More sharing options...
bear Posted March 21, 2021 Share Posted March 21, 2021 Thanks for that code, Brian. Incredibly cheeky not making that dismissable and all the paid options it contains. 😞 0 Quote Link to comment Share on other sites More sharing options...
dstelles Posted May 26, 2021 Share Posted May 26, 2021 Hi @brian! Where do i have to insert this hook? Thanks 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted June 1, 2021 Share Posted June 1, 2021 On 26/05/2021 at 17:01, dstelles said: Where do i have to insert this hook? /includes/hooks/ https://developers.whmcs.com/hooks/getting-started/ for an updated version that hides the MarketConnect link too... 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.