This topic has 2 replies, 2 voices, and was last updated 10 years by beforenoon.

  • Author
  • #23030
     beforenoon
    Participant

    *i use this theme with translation *

    Hi, I try, unsuccessfully, to change the names on the member page for: Groups, Notifications Etc..
    I try fetching the files via Codestyling localization for translation but no success.
    where can i find the files that set these Names in these pages ?
    see attached
    thanks,
    Beforenoon

    Attachments:
    You must be logged in to view attached files.
    #23062
     Catalin
    Moderator

    Hello,

    Those are generated by Buddypress and you can change them by adding this code to wp-content/plugins/bp-custom.php. If the fie doesn’t exit create it:

    COPY CODE
    
    
    function kleo_change_profile_name() {
    global $bp;
    $bp->bp_nav['profile']['name'] = 'your name';
    $bp->bp_nav['activity']['name'] = 'your name';
    $bp->bp_nav['friends']['name'] = 'your name';
    $bp->bp_nav['groups']['name'] = 'your name';
    $bp->bp_nav['blogs']['name'] = 'your name';
    $bp->bp_nav['messages']['name'] = 'your name';
    $bp->bp_nav['settings']['name'] = 'your name';
    
    }
    add_action( 'bp_setup_nav', 'kleo_change_profile_tab', 999 );
    
    define( 'BP_DEFAULT_COMPONENT', 'profile' );
    
    

    replace ‘your name’ with the new word you want to translate.

    Let me know if this works.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #23067
     beforenoon
    Participant

    Hi Catalin, thank you so much !! it really helped me a lot 🙂

    i fixed the code function name -> tab and added the notification field.

    COPY CODE
    function kleo_change_profile_tab() {
    global $bp;
    $bp->bp_nav['profile']['name'] = 'your name';
    $bp->bp_nav['activity']['name'] = 'your name';
    $bp->bp_nav['friends']['name'] = 'your name';
    $bp->bp_nav['groups']['name'] = 'your name';
    $bp->bp_nav['blogs']['name'] = 'your name';
    $bp->bp_nav['messages']['name'] = 'your name';
    $bp->bp_nav['settings']['name'] = 'your name';
    $bp->bp_nav['notifications']['name'] = 'your name';
    
    }
    add_action( 'bp_setup_nav', 'kleo_change_profile_tab', 999 );
    
    define( 'BP_DEFAULT_COMPONENT', 'profile' );
    
    ?>
Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Member page – kleo-bp-home-wrap – translation’ is closed to new replies.

Log in with your credentials

Forgot your details?