adding a custom attribute to a custom template to use with autonav
PermalinkI have a site with the autonav menu at the top displaying certain pages, but others i have 'exclude from nav' checked.
I also have an accordion menu running from an autonav but i want to create a custom attribute which will cause this to display only certain pages on my site, but overwrite the exclude from nav so in my top menu i could have home, about, contact and in my accordion i could have store, blog, contact
anyone got any ideas? any advice would be hugely appreciated!
thanks for looking :)

http://www.concrete5.org/documentation/how-tos/designers/custom-blo...
So open the autonav template (concrete/blocks/autonav/templates/header_menu) and you will see:
line 12
if (!$_c->getCollectionAttributeValue('exclude_nav')) {
Just remove the if with your own attribute. Just follow the steps towards the end of the link and you should be fine.
http://www.concrete5.org/marketplace/addons/manual-nav...
If, on the other hand, you still need the "automatic" functionality of the autonav menu, then I agree with the approach that @codingpenguins refers to.