Hi,
I have a problem as 3rd level page links don't appear in menu on 1st level page, but only on 2nd level page.
We have 2 side menus (one for 2nd level pages and one for 3rd level pages) and we would like for both be visible on 1st level page.
This is the code we are using:
<div id="Sidebar">
<% if Menu(2) %>
<div class="content well" style="padding: 8px 0;">
<ul class="nav nav-list">
<% control Menu(3) %>
<li class="$LinkingMode">
<a href="$Link">
<i class="icon-file <% if LinkingMode == "current" %>icon-white<% end_if %>"></i>
$MenuTitle.XML
</a>
</li>
<% end_control %>
</ul>
</div>
<% end_if %>
<%-- Enable Social Buttons here --%>
<%-- include SocialButtons --%>
</div>
<div id="Sidebar">
<% if Menu(2) %>
<div class="content well" style="padding: 8px 0;">
<ul class="nav nav-list">
<% control Menu(2) %>
<li class="$LinkingMode">
<a href="$Link">
<i class="icon-file <% if LinkingMode == "current" %>icon-white<% end_if %>"></i>
$MenuTitle.XML
</a>
</li>
<% end_control %>
</ul>
</div>
<% end_if %>
<%-- Enable Social Buttons here --%>
<%-- include SocialButtons --%>
</div>
Any suggestion?