Hello! I have a question about being able to customize/format how the Member list looks like. I want to transform it like this: http://puu.sh/4zHvQ.png
I used this code (after searching the support forums) to make custom fields appear there:
COPY CODE
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'] = 'Introduction';
//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(
'Class',
'Level',
'Max Raw Damage',
'Region',
'PUG Type'
);
}
In summary, how to make it such that:
1) The field titles (Class, Level, Damage, Region, PUG Type) appear beside the answers.
2) Be able to make it into a list, not one long line/sentence.
Thank you!