This one, I got it:
Paste this on functions.php (child theme):
//—->>>>>//change profile fields on members page
add_action(‘after_setup_theme’,’kleo_my_profile_fields’);
function kleo_my_profile_fields() {
global $kleo_config;
// Profile fields to show on members loop, below the name
$kleo_config[‘bp_members_loop_meta’] = array(
‘Your profile field one’,
‘Your profile field two’,
‘Your profile field three’
);
//From which profile field to show member details on members directory page
$kleo_config[‘bp_members_details_field’] = ‘Your profile field four’;
}