What the hell is this? Isn’t there some one in this large community to help me out with my problems?
Give this a try: Throw this code at the bottom of your functions.php. Make sure not to leave a trailing space.
`
//Disable members directory
function disable_directory_members() {
global $bp, $wp_query;
$bp->is_directory = false;
bp_core_redirect( $bp->root_domain );
}
add_action( ‘bp_core_action_directory_members’, ‘disable_directory_members’, 2 );
`