Manually coding the autonav and changing display
Permalink 1 user found helpful$bt = BlockType::getByHandle('autonav'); $bt->controller->displayPages = 'top'; $bt->controller->orderBy = 'display_asc'; $bt->controller->displaySubPages = 'all'; $bt->controller->displaySubPageLevels = 'custom'; $bt->controller->displaySubPageLevelsNum = '3'; $bt->render('templates/header_menu_dropdown');
My question is about this line: $bt->controller->displayPages = 'top';
How can I change that to be loading pages below a certain level instead of the top?

$bt->controller->displayPages = 'second';
That doesn't seem right but I'm not sure what all the possible choices are for displayPages.
Plus, I'm looking to have the secondary and tertiary menus under a specific page. We do this because we have multiple sites running under one instance of C5 using domain mapper.
EDIT: found it thanks again to Jordan Lev, man of the hour 24/7...
http://c5blog.jordanlev.com/blog/2012/04/hard-coded-autonav-options...