Thank you for uppgrading your plugin to show all non-BuddyPress content. Is it possible to hide the BuddyPress menue items when the user is not logged in? Now the user comes to the login page when cklicking these menue items.
Thank you for uppgrading your plugin to show all non-BuddyPress content. Is it possible to hide the BuddyPress menue items when the user is not logged in? Now the user comes to the login page when cklicking these menue items.
This is not possible, because for this are changes in the theme are necessary. But you can do it for yourself. Wrap the menu items into this code:
<?php if ( is_user_logged_in() ): ?>
The menu item
<?php endif; ?>
Now the items are only showed if the user is logged in.
This topic has been closed to new replies.