Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
How to exclude menu from navigation list in umbraco v8
You can create a true/false property with alias "umbracoNaviHide"
I wand to exclude that properties from navigation menu that have "umbracoNaviHide" as alias, how to control it.
Hi,
you could try:
var childPages = page.Children.Where(x => x.IsVisible() && !x.Value<bool>("umbracoNaviHide"));
~ Jonathan
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Excluding Menu from navigation bar
How to exclude menu from navigation list in umbraco v8
You can create a true/false property with alias "umbracoNaviHide"
I wand to exclude that properties from navigation menu that have "umbracoNaviHide" as alias, how to control it.
Hi,
you could try:
~ Jonathan
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.