This topic has 2 replies, 2 voices, and was last updated 10 years by beforenoon.
-
Author
-
July 20, 2014 at 16:23 #23030beforenoonParticipant
*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,
BeforenoonAttachments:
You must be logged in to view attached files.July 21, 2014 at 16:19 #23062CatalinModeratorHello,
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 CODEfunction 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,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 21, 2014 at 16:34 #23067beforenoonParticipantHi Catalin, thank you so much !! it really helped me a lot 🙂
i fixed the code function name -> tab and added the notification field.
COPY CODEfunction 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' ); ?>
-
AuthorPosts
The topic ‘Member page – kleo-bp-home-wrap – translation’ is closed to new replies.