My page list lookes like this
- Main page
- Contact
- Products
- Tools
- Tools 1
- Tools 2
- Workwear
- Helmets
- Belts
- Other
I want a sidebar that shows a submenu.. Like if i'm on "Products" my menu should look like this
Products
- Tools
- Workwear
- Other
But when I'm on "Tools" i want the submenu to change to
Tools
- Tools 1
- Tools 2
The problem is that i get every subpage, even pages that are sub- subpages..
{cms_module module='menumanager' template='submenu' start_level='2'}
Template:
{parent_page_title}
{foreach from=$nodelist item=node}
{if $node->current == true}
url}">{$node->menutext}
{else}
url}">{$node->menutext}
{/if}
{/foreach}
Is there any fix to this??

