1
hi all
in the template files i edited "system_block_mainmenu.html"
to add a new menu item.
<table cellspacing="0">
<tr>
<td id="mainmenu">
<a class="menuTop" href="<{$xoops_url}>/"><{$block.lang_home}></a>
<!-- start module menu loop -->
<{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}>
<!-- end module menu loop -->
<a class="menuMain" href="/ourschool.php">Our School</a>
</td>
</tr>
</table>
This adds a menu item "our School" BUT it adds the menu item at the end. I want it as the 3rd item in the main menu.
Can i somehow put it in the menu loop?
thanks in adavnce,
prasad..