@delphy69
Active 11 years ago
-
Henry Wright replied to the topic Hide members for other members in the forum How-to & Troubleshooting 11 years ago
Hi @delphy69
Try adding this to your theme’s functions.php file
function hide_member_profiles() {
if ( bp_is_user_profile() && ! current_user_can( 'manage_options' ) )
bp_core_redirect( home_url() );
}
add_action( 'template_redirect', 'hide_member_profiles', 1 );