I think I am having the exact same challenge. Below is the code snippet that I have included in the child function.php. I also cleared the cache as I saw reference to doing that somewhere else. Can I confirm if I am doing this correctly? I have tried various combinations of using field name or field groups, so not sure if something else is the issue.
add_action(‘after_setup_theme’,’kleo_my_member_data’);
function kleo_my_member_data()
{
global $kleo_config;
//this is the details field, right now it take the “About me” field content
$kleo_config[‘bp_members_details_field’] = ‘About Me’;
//this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
$kleo_config[‘bp_members_loop_meta’] = array(
‘Favorite Quote’
);
}
Attachments:
You must be
logged in to view attached files.