Nav Menu Condition Conflicts

Hey,

On the Pro Header, I have a ‘Navigation Inline’ element that is set-up in ‘Appearance > Menus’ with the condition to show only to logged in users.

But as you can see, a big ‘X’ is showing, instead of hiding the entire element.

Is there a nicer way to use this with X Header elements?

Cheers.

Hello Kade,

Thanks for writing in!

Looks like you are using Advanced Access Manager plugin to apply conditions. As it’s a 3rd party plugin it’s fairly difficult for us to provide support for the same.

You can take a look at following resources for some alternative solutions:

Thanks.

thing is,

This was working for over 6 months before the latest update.

I have tried 3 different plugins, including the one you mentioned, with no luck unfortunately :frowning:

Hi Kade,

You can easily do this using CSS without using any plugin.

Just add a unique class to your Navigation Inline element.

Then add this in Header > CSS

body .my-menu {
   display:none;
}
.logged-in .my-menu {
   display:block !important;
}

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.