Need to remove "Quick Help"

Forum dedicated to Mods for HESK created by Mike Koch

Moderator: mkoch227

Post Reply
pushpak359
Posts: 2
Joined: Fri Feb 06, 2015 11:34 am

Need to remove "Quick Help"

Post by pushpak359 »

How to remove Quick Help from every page like on submit ticket, viewing knowledge etc from every page,
i want to align all pages on left side.
mkoch227
Posts: 666
Joined: Wed Jul 04, 2012 3:37 pm

Re: Need to remove "Quick Help"

Post by mkoch227 »

If you want to remove the "Quick Help" boxes, first look for "<?php echo $hesklang['quick_help']; ?>" in the code. This should take you to where the box is located on the page. Then, look for this nearby:

Code: Select all

<div align="left" class="col-md-4">
    <div class="panel panel-default">
        <div class="panel-heading"><?php echo $hesklang['quick_help']; ?></div>
        <div class="panel-body">
            <p><?php echo $hesklang['quick_help_ticket']; ?></p>
        </div>
    </div>
</div>
<div class="col-md-8">
   ....
Delete the "col-md-4" div, and then change "col-md-8" to "col-md-12" to expand the content div to the whole screen. I may include a feature in the future to enable/disable the "Quick Help" boxes.
Mike, Lead Developer of Image HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
pushpak359
Posts: 2
Joined: Fri Feb 06, 2015 11:34 am

Re: Need to remove "Quick Help"

Post by pushpak359 »

Thanks mkoch227!
Post Reply