Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • 3ijtKwijt 36 posts 216 karma points
    Aug 22, 2017 @ 14:41
    3ijtKwijt
    0

    Bug - custom navigation with AD membership

    Hi there

    I found out that using the Active Directory Providers package, when making a navigation to show only menu items that you have access to, it breaks...

    My code:

    @foreach (var node in homePage.Children.Where("UmbracoNaviHide == false"))
    {
        if (!Umbraco.MemberHasAccess(node.Path))
        {
            continue;
        }
        //member has access, generate menu here
    <li class="@(CurrentPage.Id == node.Id ? "current_page_item" : null)"><a href="@node.Url">@node.Name</a></li>
    }
    

    Works fine without the Active Directory Providers but with it, it doesn't, as I need this, I am also in need for a solution, but haven't been able yet to find one. If anyone here has a fix or is able to help me out?

    Thanks in advance!

  • 3ijtKwijt 36 posts 216 karma points
    Aug 23, 2017 @ 06:23
    3ijtKwijt
    0

    Found a workaround for this issue. Explained it here: https://our.umbraco.org/forum/using-umbraco-and-getting-started/87587-navigation-based-on-access

    Although it would be nice, and I assume better, if the Umbraco.MemberHasAccess could be used instead...

  • Thomas Haggren 29 posts 149 karma points
    Sep 07, 2017 @ 13:06
  • 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.

Please Sign in or register to post replies