TinyPortal
Development => Support => Topic started by: va7jba on February 16, 2013, 12:42:04 AM
Hi,
I was wondering of anybody knows how to remove the tinyportal help page from the top menu so that other users cant access it.
all the help would be appreciated!
You can remove the link but not the page, if you go to the Sources folder in your forum root, and look for subs.php
Make sure you save a backup before making any changes
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
'tphelp' => array(
'title' => 'TinyPortal',
'href' => $scripturl . '?action=tpmod;sa=help',
'show' => true,
),
),
),
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
),
),
Thanks for the help! :)