How can I show the buddypress icon in the menu only to logged in users?

Good afternoon :slight_smile:

I have the buddypress icon showing on the header menu. How can I set it so that it only shows to logged in users?

Thanks in advance :slight_smile:

Hi,

To achieve that, you can add the code below in Theme Options > CSS

.x-menu-item-buddypress {
    display:none;
}

.logged-in .x-menu-item-buddypress {
    display:block;
}

Hope that helps

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