Showing Menu / or part of the bar only to register users

Hi guys,
I’m working on membership site that is using Easy Digital Downloads. And I’m wondering, is it possible to enable part of the header bar to members only?

I would like to create secondary navigation, with “My Accounts” links but to show only to logged in users. Is it possible to do that?

Something like hiding part of the bar or column based on the breakdown, but for logged in users.

Thanks!

Hi @rafalkukla,

Thank you for writing in, there is a class logged-in on the <body> tag when a user is login to the site, so we can use that to show the bar on login user only. You can add the custom CSS below on your bar’s ELEMENT CSS area. That way the bar is hidden but not on login user.

body:not(.logged-in) $el {
  display:none;
}

The opposite is:

body.logged-in $el {
  display:none;
}

This will hide the bar to log in the user.

Hope it helps,
Cheers!

1 Like

Hi Friech,

That’s amazing. Thank you!

You’re most welcome!

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