Forum Replies Created
-
Author
-
mylaivaParticipant
it isn’t working for me either. This is the code I have:
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(
‘I am’,
‘Type’,
‘City’
);}
I also have this code in another section:
function kleo_remove_actions()
{
add_filter(‘kleo_bp_meta_fields’,’my_remove_age’);/* For example uncomment the line bellow to disable matching on member profile */
//remove_action(‘kleo_bp_before_profile_name’, ‘kleo_bp_compatibility_match’);
}function my_remove_age($output) {
//remove the Age form array
unset($output[‘age’]);return $output;
}mylaivaParticipantI would also like to know how to do this. I have a full width form with checkboxes and other input fields but as of right now it’s in a single column and really long. I would like to have multiple columns instead of one. Thanks!
-
AuthorPosts