I have some pages I would like to hide from my top navigation bar. I check the "hide from navigation" checkbox in the properties of the page, but it's still appearing. I've cleared my browser's temp files, and republished the entire site to clear umbraco's cache, and the pages are still appearing.
hide from navigation checkbox not working
I have some pages I would like to hide from my top navigation bar. I check the "hide from navigation" checkbox in the properties of the page, but it's still appearing. I've cleared my browser's temp files, and republished the entire site to clear umbraco's cache, and the pages are still appearing.
I think I figured this out. I modified ublogsyGlobalNavigation.cshtml and changed
@foreach (var n in nodes)
to
@foreach (var n in nodes.Where("Visible"))
is working on a reply...