Good afternoon 
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 
Good afternoon 
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 
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.