SMF Support > SMF 2.0.x Support
How to edit the "Help" Page!
(1/1)
iKingNationX:
Hello guys I'm wondering if there is a way to delete the "Help" Page tab on my page bar? If not it's cool.
Ex.
If you can't delete the page, is there also any way of editing the page?
Ex.
Please get back to me as soon as possible!
mashby:
In Sources/Subs.php, find this bit of code:
--- Code: --- 'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
),
),
--- End code ---
And simply remove it. Alternatively, you could just change true to false in the show condition:
--- Code: --- 'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => false,
'sub_buttons' => array(
),
),
--- End code ---
iKingNationX:
Alright thanks, but I got another question? How could I edit it? if it's possible?
mashby:
The actual content of that is in:
Themes/default/languages/Manual.english.php
The construction of the content is in:
Themes/default/Help.template.php
Specifically, the function template_manual() at the end of it.
Navigation
[0] Message Index
Go to full version