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.
Need to remove "Quick Help"
Moderator: mkoch227
Re: Need to remove "Quick Help"
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:
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.
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">
....
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
-
- Posts: 2
- Joined: Fri Feb 06, 2015 11:34 am
Re: Need to remove "Quick Help"
Thanks mkoch227!