-
Author
-
September 17, 2013 at 06:30 #2941LKrParticipant
Hi!
I am trying to make changes to the Profile page (user profile). Specifically, I’d like to:1. Delete username and “active […]” (right under the User Name at the top of the page)
2. Change the word “avatar” to “picture” everywhere on the profile page.
3. Change the word “friends” to “connections” (in the Activity tab, in the menu to sort Activity by type).Which file(s) do I need to tweak? I made gazillion of changes in multiple files (that looked like they were relevant to what I needed to do) but doesnt look like I took the right files and I see no changes on my website.. I’d appreciate your advice. Thanks!
September 17, 2013 at 18:41 #2994SQadminKeymasterHi,
Here goes;
1. Copy sweetdate/members/member-header.php to sweetdate-child/members/member-header.php and remove line 35 and 36.
You need to activate the sweetdate-child theme2. Another file to copy to sweetdate-child in the same location as in the parent theme: members/single/profile/change-avatar.php
Rename the avatar string in the file with the one you desire
There are some other avatar strings that come from Buddypress core that could be changed following this url:
http://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/3. This is also handled by Buddypress. Add this code to wp-content/plugins/bp-custom.php. If the file doesn’t exit create it:
COPY CODEfunction bbg_change_subnav() { global $bp; $bp->bp_options_nav['activity']['friends']['name'] = 'Connections'; } add_action( 'bp_setup_nav', 'bbg_change_subnav', 999 );
Cheers.
PS: Please rate our theme and work if you likeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 18, 2013 at 03:58 #3029LKrParticipantExcellent – everything worked like a charm. Thanks!
Sure, I rated already – at 5!September 18, 2013 at 13:48 #3043SQadminKeymasterThank you. We greatly appreciate it!
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 ‘Sweetdate – WordPress’ is closed to new topics and replies.