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...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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...