Page 1 of 1
Need to remove "Quick Help"
Posted: Fri Feb 06, 2015 11:39 am
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.
Re: Need to remove "Quick Help"
Posted: Fri Feb 06, 2015 2:23 pm
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.
Re: Need to remove "Quick Help"
Posted: Mon Feb 09, 2015 3:41 am
by pushpak359
Thanks mkoch227!