Topic: How to disable Help on frontaccounting

Hello All,
Please I will like to know how to disable "Help" from the front-end of the FA; or perhaps the file directory to disable it.

I am using FA 2.4.8

Thanks

Re: How to disable Help on frontaccounting

its comming from /themes/default/renderer.php or the theme that you have

/themes/yourtheme/renderer.php  find help.gif or _('Help'). then it should be like this

$himg = "<img src='$local_path_to_root/themes/".user_theme()."/images/help.gif' style='width:14px;height:14px;border:0;vertical-align:middle;'' alt='"._('Help')."'>&nbsp;&nbsp;";

just change it to

$himg='';

that's it.

Subscription service based on FA
HRM CRM POS batch Themes

Re: How to disable Help on frontaccounting

@kvvaradha
Thanks for your response. I got your analysis and I comment out the line. However it's still showing.
Please what I need is to completely disable it. For the "Help" menu not to show at all.
Thanks for your reply

Re: How to disable Help on frontaccounting

Just set it in config.php by uncommenting line 88 to be:

$help_base_url = null;