Jump to content

Hide/remove setup task box


Recommended Posts

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? headshake.gif

<?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");
Link to comment
Share on other sites

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? headshake.gif


<?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 ! ❤️ 

Link to comment
Share on other sites

  • 2 months later...
  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated