Remove Maintenance Mode message

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Lukosius
Posts: 3
Joined: Wed Jun 16, 2021 5:04 am

Remove Maintenance Mode message

Post 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.
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: Remove Maintenance Mode message

Post 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.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Lukosius
Posts: 3
Joined: Wed Jun 16, 2021 5:04 am

Re: Remove Maintenance Mode message

Post by Lukosius »

Perfect.
Thanks for that.
Post Reply