-
Author
-
February 8, 2016 at 18:28 #102689LukeParticipant
Hello,
I’m looking through the theme files to rename the buddypress icons in the <li>.
Where can I find the php file to change them?
Thanks,
Luke
February 8, 2016 at 20:41 #102772RaduModeratorHi,
Do you want to change the icons ?
Look here : https://archived.seventhqueen.com/kb/changing-section-icons-in-profiles-and-groups
If not let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 8, 2016 at 20:44 #102775LukeParticipantThanks Radu,
NO I would like to change the icon text. eg change “Media” to “documents”
Thanks,
LukeFebruary 9, 2016 at 15:50 #102887RaduModeratorHi,
Please use this function
For renaming the media label you should add this snippet to wp-content/themes/kleo-child/functions.php
COPY CODEfunction rename_profile_menu_items(){ global $bp; $bp->bp_nav['media']['name'] = 'documents'; } add_action('bp_setup_nav', 'rename_profile_menu_items', 201);
See related topics here : https://archived.seventhqueen.com/forums/topic/how-i-can-change-my-order-tab-in-buddypress-profile#post-85874
If you need to rename another item just copy this $bp->bp_nav[‘media’][‘name’] = ‘documents’; and instead media put profile or what you need to translate.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 12, 2016 at 17:17 #103570RaduModeratorHi szmek9,
I don’t really understand can you please explain ?
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 12, 2016 at 19:08 #103606szmek9ParticipantHi
I meant…_>pictureAttachments:
You must be logged in to view attached files.February 12, 2016 at 19:28 #103618RaduModeratorYES
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Plugins questions’ is closed to new topics and replies.