4
To change the menu there are two options:
OPTION I
1. You need to create a template set to work on (you can not work on 'default' template set). If you done that, igore the rest of this point. So go to admin part of XOOPS and System admin -> Templates. Then chose "clone", enter the name of new template set and click "Submit".
Next you need to tell XOOPS to use this template set. So go to System Admin -> Preferences -> General Setings and for "Default template set" option chose the new template set you created, scroll down and click "Go!"
2. Now you need to edit the template for main menu: Go to System Admin -> Templates and from the section of the new template click on list next to System (System [List (27)]). Find "system_block_mainmenu.html" and click edit. You should see something like this:
<table cellspacing="0">
<tr>
<td id="mainmenu">
<a class="menuTop" href="<{$xoops_url}>/"><{$block.lang_home}>a>
<{foreach item=module from=$block.modules}>
<a class="menuMain" href="<{$xoops_url}>/modules/<{$module.directory}>/"><{$module.name}>a>
<{foreach item=sublink from=$module.sublinks}>
<a class="menuSub" href="<{$sublink.url}>"><{$sublink.name}>a>
<{/foreach}>
<{/foreach}>
td>
tr>
table>
add your link above the
part and it will apear in the begining of main menu.
OPTION II
You may make this change in XOOPS_ROOT/modules/system/templates/blocks/system_block_mainmenu.html
and then update system module.
If I remember, there was also an article in the FAQ about all this ...