Hello,
Please how can i disable the Help link found at the top of my forum?
I want o write custom help file for my users.
Thanks.
I have attached the image.
The help entry is controlled but:
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
),
in Subs.php.
You can just change true to false and it should disappear.
You can create an easy addon that hooks in to integrate_actions in SiteDispatcher that will change the controller for that.
Or you can just use integrate_action_help_after and change the context variable for wiki_url and manual_sections.
OR, you can just change the template. It is much easier.
Though, the question is to disable the help link, which emanuele answered. Although, in the future, an upgrade will break that. So, you should be using a hook there.
i used emanuele's option. Thanks
@Joshua Dickerson