Multi language - display no subnavigation
Permalink
Hi there,
I already posted in the developer forum, but no reactieon. I hope someone here can help me...
I used the fine tutorial:http://www.concrete5.org/documentation/how-tos/building-sites-in-mu... to build a two language site.
The problem is, i want to display subpages in my navigation, but it doesn't show the subpages.
When i manually add an autonav to the page, the subpage displays correctly. Of course I set the autonav in my scrapbook.
Attached:
- Nav not working
- Settings in scrapbook
- Manually nav, is working
Code:
Url:http://212.61.165.85/~rachelfont/index.php/intake
Hope someone can help...
I already posted in the developer forum, but no reactieon. I hope someone here can help me...
I used the fine tutorial:http://www.concrete5.org/documentation/how-tos/building-sites-in-mu... to build a two language site.
The problem is, i want to display subpages in my navigation, but it doesn't show the subpages.
When i manually add an autonav to the page, the subpage displays correctly. Of course I set the autonav in my scrapbook.
Attached:
- Nav not working
- Settings in scrapbook
- Manually nav, is working
Code:
<div id="navigatie"> <?php if ($c->getCollectionAttributeValue('engels')) { $block = Block::getByName('engelse_navigatie'); if( is_object($block) ) $block->display(); } else { $block = Block::getByName('nederlandse_navigatie'); if( is_object($block) ) $block->display(); } ?> <?php $ah = new Area('Links'); $ah->display($c); ?> </div>
Url:http://212.61.165.85/~rachelfont/index.php/intake
Hope someone can help...