TinyPortal

Development => Support => Topic started by: va7jba on February 16, 2013, 12:42:04 AM

Title: Removing TinyPortal help page from menu
Post 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!
Title: Re: Removing TinyPortal help page from menu
Post by: Lesmond on February 16, 2013, 06:52:48 PM
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
Code (search for) Select
'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,
),
),
),


Code ( change to) Select
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
),
),
Title: Re: Removing TinyPortal help page from menu
Post by: va7jba on February 18, 2013, 11:58:47 PM
Thanks for the help!  :)