Hello,
You can try to add this in the functions.php of your active theme :
function henry_restrict_access_admin_panel(){
global $current_user;
get_currentuserinfo();
if ( $current_user->user_level < 1 ) {
$redirect = bp_core_get_user_domain( $current_user->ID );
wp_redirect( $redirect );
exit;
}
}
add_action('admin_init', 'henry_restrict_access_admin_panel', 1);
? hmmm was going to post a variation on the above code but bp.org refuses it *shrug*
You already said that – aka – Stop hitting yourself