This topic has 13 replies, 3 voices, and was last updated 9 years by Laura.

  • Author
  • #124845
     fixxxer1982
    Participant

    Hello,

    I downloaded and installed Sweetdate theme. On the members page I tried to setup what kind of infomation will be visible for the members.

    Like username, age. My problem is, I couldn’t find where can I customise this details. Because I’d like to show about the Member’s city and and what they’re looking for?

     

    Thank you.

     

    Adam Galambos

    #124856
     fixxxer1982
    Participant
    Not marked as solution
    #124970
     Laura
    Moderator
    Not marked as solution
    #124998
     fixxxer1982
    Participant
    Not marked as solution
    #125109
     Laura
    Moderator
    Hello, here: You can change the info that displays under the name and the details field by adding this to your sweetdate-child/functions.php file:
    //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(
            'I am a',
            'Marital status',
            'City'
        );
          
    }
    
    Also if the fields don't appear add this line, reload the members page and you can remove the line after that(we have added a caching on those fields for better performance):
    delete_transient( 'kleo_bp_meta_fields' );
    
    Just replace those profile field names in the code with our one custom ones. Let me know if it helps :)
    #125149
     fixxxer1982
    Participant
    Not marked as solution
    #125346
     Laura
    Moderator
    Not marked as solution
    #126174
     fixxxer1982
    Participant
    Not marked as solution
    #126293
     Laura
    Moderator
    Not marked as solution
    #126318
     fixxxer1982
    Participant
    Not marked as solution
    #126434
     Laura
    Moderator
    Not marked as solution
    #129922
     garrett800
    Participant
    Not marked as solution
    #129926
     garrett800
    Participant
    Not marked as solution
    #130161
     Laura
    Moderator
    Not marked as solution
Viewing 14 posts - 1 through 14 (of 14 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?