15
Putting a block in a block? Seems like a hard way to do it to me...
go to admin>system>blocks> and click on 'edit' for the 'Main Menu' block (system_block_mainmenu.html) and you should find the code (edit template) looks something like this:
<table cellspacing="0">
<tr>
<td id="mainmenu">
<a class="menuTop" href="<{$xoops_url}>/">Home - ホームa>
<{foreach item=module from=$block.modules}>
<a class="menuMain" href="<{$xoops_url}>/modules/<{$module.directory}>/" title="<{$module.name}>"><{$module.name}>a>
<{foreach item=sublink from=$module.sublinks}>
<a class="menuSub" href="<{$sublink.url}>" title="<{$sublink.name}>"><{$sublink.name}>a>
<{/foreach}>
<{/foreach}>
td>
tr>
table>
Add your link (regular html will do fine) after the
end module menu loop -->
part.