1
I'm trying to modify the main menu block to show ALL sub-menu items, not just the ones in the current module.
The main menu block uses the following to build the menu:
<{foreach item=module from=$block.modules}>
<{$module.name}> <{foreach item=sublink from=$module.sublinks}>
<{/foreach}>
<{/foreach}>
Apparently $module.sublinks is only filled out for the current module. Are the other sub-menus available in a different smarty variable, or does this require a code change?