in page member i see “All members (total of members)”.. in total i see 11 but i have just 1 user on result! 
		
	 
	
	
	
 
		
			
	
	
		
		Can you paste the code you’re using?
		
	 
	
	
	
 
		
			
	
	
		
		Hi,
In this file: wp-content/plugins/bp-custom.php i add this:
function buddydev_exclude_users_by_role( $args ) {
	//do not exclude in admin
	if( is_admin() && ! defined( 'DOING_AJAX' ) ) {
		return $args;
	}
	
	$excluded = isset( $args['exclude'] )? $args['exclude'] : array();
	if( !is_array( $excluded ) ) {
		$excluded = explode(',', $excluded );
	}
	
$tab_role=array('administrator','subscriber','author','contributor','editor');
	foreach($tab_role as $k=>$role){
	//$role = ;//change to the role to be excluded
	$user_ids =  get_users( array( 'role' => $role ,'fields'=>'ID') );
	
	
	$excluded = array_merge( $excluded, $user_ids );
	}
	
	$args['exclude'] = $excluded;
	
	return $args;
}
So i exclude all role but i have custom role which users of this role are only can see they profiles in member page
		
	 
	
	
	
 
		
			
		
			
	
	
		
		Hi  @pws2015,
please use [code] button when you insert code in a post. Thx.