PDA

View Full Version : remove - help section


drb
05-10-2007, 07:35 PM
Hello,
Been posting quite a lot today ;-)

I wish to remove the 'help' link (which points to help page in joomlalms.com) and add my own static pages in joomla which has video tutorials (like made with camstasia / screenshot capture) etc. How can I do that?


thanks,

drb

den
05-11-2007, 09:26 AM
To completely remove help menu item:
Go to administrator Back End -> JoomlaLMS -> Configuration -> Menu Manager. Here you can disable help menu for teacher, student and CEO.

To change help item link:
You should edit file 'components/com_joomla_lms/includes/jlms_menu.php'.
Lines 96-98 of this file contains the following code:

if ($menu->help_task){
$menu->menulink = $menu->menulink.$help_task;
}

change these lines to:

if ($menu->help_task){
$menu->menulink = 'http://yoursite.com/help/';
}

By using variable '$help_task' you can link your help menu to different help sections divided by JoomlaLMS tools.