#166395
 internetservice
Participant

yes, I did add this code in functions.php

COPY CODE
//members page fields 
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(
'år',
'I am a',
'Marital status',
'City'
);

}

but the members account page info still not changing. the problem is that the word that I am putting is år. and that Danish letter of å can’t be parsed in PHP. but I think I should put år in HTML page as PHP can’t parse that unique letter in danish. what is the HTML file for https://www.dnsj.dk/medlemmer/ though? any idea?

Log in with your credentials

Forgot your details?