Page 1 of 1

Remove Maintenance Mode message

Posted: Wed Jun 16, 2021 5:15 am
by Lukosius
Hi there,
We are new to Hesk and will be using it as an internal ticketing system for our IT business.
So we will have Maintenance Mode enabled permanently as we do not want anyone submitting tickets externally.

Is there a way of removing the "Maintenance mode is active" message on each page?
It's annoying, plus it pushes all the content further down the page.

Re: Remove Maintenance Mode message

Posted: Wed Jun 16, 2021 7:43 am
by Klemen
In file "inc/show_admin_nav.inc.php" change

Code: Select all

if ( hesk_check_maintenance(false) )
to

Code: Select all

if (1==2)
Note that with maintenance mode off, your users will also not be able to view tickets from the public side, not just submit them.

Re: Remove Maintenance Mode message

Posted: Wed Jun 16, 2021 7:52 am
by Lukosius
Perfect.
Thanks for that.