Hi totoff,
thanks for your reply. I have already tried this, but there is a problem when level 3 is activated (page on level 3 is the current level) -> level 3 is not displayed!
$root = $page->children('template=xyz_template');
$sub_nav = $nav->render($sub_nav_options,null,$root);
I have found a (quick-and-dirty) solution by myself:
// Nav-Level 3;
switch (count($page->parents)) {
case 2:
$root = $page;
break;
case 3:
$root = $page->parent;
break;
default:
$root = false;
}//end switch
$sub_nav = $root ? $nav->render($sub_nav_options,null,$root) : false;
.....
....
But maybe anyone know a better solutions for this.
Thanks!
Robert