Skip to main content
Topic: I want Disable Help File (Read 2237 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

I want Disable Help File

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.

Re: I want Disable Help File

Reply #1

The help entry is controlled but:
Code: [Select]
					'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.
Bugs creator.
Features destroyer.
Template killer.

Re: I want Disable Help File

Reply #2

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.
Last Edit: July 21, 2015, 12:20:24 pm by Joshua Dickerson
Come work with me at Promenade Group

Re: I want Disable Help File

Reply #3

Quote from: Joshua Dickerson – 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