This topic has 9 replies, 3 voices, and was last updated 8 years by joy.

  • Author

    Tagged: ,

  • #74234
     jaynoir
    Participant

    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.
    #74323
     sharmstr
    Moderator

    There’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #74351
     jaynoir
    Participant

    Thanx alot

    #74632
     jaynoir
    Participant

    Hey, can I change the icon’s position also??

    #74633
     sharmstr
    Moderator

    Please 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #92798
     joy
    Participant

    The post to change the icons is turning up a 404 page. Can you please get the correct link if available? Thank you.

    #92800
     sharmstr
    Moderator

    Its 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.html

    To rearrange other tabs

    COPY CODE
    
    function 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #92967
     joy
    Participant

    Sorry, 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.

    #92975
     sharmstr
    Moderator

    To 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #93049
     joy
    Participant

    Okay, I will work on this. Thank you.

Viewing 10 posts - 1 through 10 (of 10 total)

The forum ‘General questions’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?