Hello everyone,
I am migrating my site to SS and trying to add secondary menu apart from main one (f.eg Home, Career, About us, Contact). I'm a bit new to silverstripe and can't find a solution/advice that will simply explain a walk through. Particularly, when I am adding new pages through CMS, links to them are listed all together in a website
<% loop $Menu(1) %>
<li><a href="$Link" title="$Title.XML">$MenuTitle.XML</a></li>
<% end_loop %>
What I need is a secondary independent menu that would list only particular page links, something like "Show in menus?" option in CMS page settings..I've tried adding a custom field to page object via MySQL and to filter it with "IF" statement in above loop but no use..
Thanks for any help