-
Author
-
August 23, 2015 at 18:29 #74234jaynoirParticipant
Hey, First of all thanx for this amazingly beautiful and efficient theme
But there is a problem I am facing in it, that if I add a new section in my buddypress user’s profile, they all get the sane icon.(shown in attachment)
I am not a programmer so I am not getting a solution for it.
Please help me by any solution for changing those icons
Thanx in advance
Attachments:
You must be logged in to view attached files.August 24, 2015 at 13:21 #74323sharmstrModeratorThere’s a stick topic for that: https://archived.seventhqueen.com/forums/topic/change-buddypress-navigation-menu-icons#post-15756
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 25, 2015 at 23:40 #74633sharmstrModeratorPlease search before asking questions. Thank you.
https://archived.seventhqueen.com/forums/topic/member-profile-page-edit#post-70536
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 12, 2015 at 14:36 #92798joyParticipantThe post to change the icons is turning up a 404 page. Can you please get the correct link if available? Thank you.
December 12, 2015 at 14:42 #92800sharmstrModeratorIts not 404ing for me. Here’s what the link says
To move the media tab
http://docs.rtcamp.com/rtmedia/developers/reordering-media-tab-buddypress.htmlTo rearrange other tabs
COPY CODEfunction my_change_profile_tab_order() { global $bp; $bp->bp_nav['settings']['position'] = 10; $bp->bp_nav['activity']['position'] = 20; $bp->bp_nav['friends']['position'] = 30; $bp->bp_nav['groups']['position'] = 40; $bp->bp_nav['blogs']['position'] = 50; $bp->bp_nav['messages']['position'] = 60; $bp->bp_nav['profile']['position'] = 70; } add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 13, 2015 at 11:48 #92967joyParticipantSorry, this is the link that I am getting the 404 error in:
https://archived.seventhqueen.com/forums/topic/change-buddypress-navigation-menu-icons#post-15756
I am looking to change the icons, not the order, if possible. Thanks @sharmstr, you’re always such a great help in the forum.
December 13, 2015 at 13:57 #92975sharmstrModeratorTo add icons to new items added by plugins you need to inspect the element using Chrome browser, get the ID of the specific list item and follow the above example.
Example to add for Buddypress Follow plugin that adds two new navigation items, Followers and Following
/* Following icon */ #buddypress div#item-nav ul #members-following-personal-li a:before { content: "\E98F"; } /* Followers icon */ #buddypress div#item-nav ul #members-followers-personal-li a:before { content: "\E995"; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.