Skip to:
Content
Pages
Categories
Search
Top
Bottom

Buddypress tabs order

  • @alby54

    Participant

    Is there any way to change the order of tabs in buddypress? I’m referring to the tabs Activity, Profile and so on. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • @modemlooper

    Moderator

    Example below, change ‘notifications’ to the tab you want to access

    function bpcodex_change_notifications_nav_position() {
        buddypress()->members->nav->edit_nav( array(
            'position' => 999,
        ), 'notifications' );
    }
    add_action( 'bp_setup_nav', 'bpcodex_change_notifications_nav_position', 100 );

    read more here: https://codex.buddypress.org/developer/navigation-api/

    @alby54

    Participant

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Buddypress tabs order’ is closed to new replies.
Skip to toolbar