3
Yes you can add a link to the main menu, but you have to have at least a little undestanding of how templates are made, and a little HTML knowledge is also good.
The xoops.org main menu block template looks 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>
You can add your own menu itens only before or after all the other items. Lets say you add it after the last generated menu item, and all you have to do is add your link
directly after the text, but before the text.
That should do the trick.
Herko