PDA

View Full Version : Help Icon


brains
02-21-2007, 04:36 PM
How do I direct the user to my own help files when they click on the HELP icon?

den
02-22-2007, 09:11 AM
You can't change this.

brains
02-22-2007, 09:27 AM
Why not? Can I arrange to have it changed? Nothing personal, but your help section will mean absolutely nothing to an 11 year old school kid. We tend to provide out own animated help.

Within your coding (I presume the protected code) could I arrange to have it directed to our own help section?

Paid if necessary.

Many thanks

den
02-22-2007, 09:38 AM
Yes, we can arrange this as configurable option in LMS back end(whether our help or link to custom one). Please send a letter with description to lms@elearningforce.dk to proceed further.

brains
02-22-2007, 11:01 AM
Thanks Den

Also, as previously mentioned.....the forums open in an IFRAME which results in 2 lots of scrolling bars - the main window and the IFRAME. Those who have tested it so far all agree that this is very annoying.

Can the forums open in a new window?

tomcat
07-17-2007, 03:46 PM
has this been implemented into the program? i am also needing this but could not find it in the configuration.

Thanks

Tom

den
07-18-2007, 07:34 AM
You can change help menu link in file 'includes/jlms_menu.php' - at line ~98.

tomcat
08-31-2007, 01:50 PM
i tried to do this today but couldnt see it in the file or line posted. any chance someone could verify the line and the code that needs to be replaced? thanks.

den
09-01-2007, 06:29 AM
contents of the file 'components/com_joomla_lms/includes/jlms_menu.php' at the lines ~95-100:

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

You can change this code to something like this:

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