This topic has 5 replies, 2 voices, and was last updated 6 years by Radu.

  • Author
  • #199011
     napadlo
    Participant

    how do I change the order or hide some items in the right way?

    Attachments:
    You must be logged in to view attached files.
    #199031
     Radu
    Moderator

    Hi,
    You can change the order using the next function

    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 );
    
    

    The function will be added to wp-content/themes/kleo-child/functions.php

    10,20,30,40,50 etc represents order

    Child theme needs to be installed and activated.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #199034
     napadlo
    Participant

    And to hide set item to FALSE?

    #199278
     Radu
    Moderator

    Using this you can remove it.

    COPY CODE
    
    // Remove profile tabs
    function bp_remove_profile_tabs() {
        global $bp;
        unset($bp->bp_nav['media']);
    }
    add_action('bp_init', 'bp_remove_profile_tabs', 9999);
    

    using this you can rename them

    COPY CODE
    
    
    function mb_profile_menu_tabs(){
        global $bp;
        $bp->bp_nav['groups']['name'] = 'Cities';
    }
    add_action('bp_setup_nav', 'mb_profile_menu_tabs', 201);
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #199848
     napadlo
    Participant

    Perfect work super it works. Thank you, I wish a beautiful day.

    #199898
     Radu
    Moderator

    Thank you!
    Have a nice week
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 6 posts - 1 through 6 (of 6 total)

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

Log in with your credentials

Forgot your details?