BuddyBoss Home – Web Support Forums Plugins BuddyPress Reorder Tabs adminbar-links messed up

Viewing 9 posts - 1 through 9 (of 9 total)
  • Question

    #58395
    @schwarzaufweiss

    While using BP 2.4.3 and Reorder Tabs 1.0.5 the links in adminbar popup are messed up (not following the order I’ve defined with the plugin) while they are ok in profile or group.

    Answers

    #58990
    @schwarzaufweiss

    What’s your typical response time? I really would like to start using this plugin…

    #59238
    @vapvarun

    Hi @schwarzaufweiss,
    Sorry for delayed response.

    BuddyPress Reorder Tabs do not reorder admin bar links , it only re-orders BuddyPress tabs on profile
    Regards

    #59245
    @schwarzaufweiss

    Hi @vapvarun
    I tried again on my site – if Reorder Tabs is active the admin bar links are messed up. Could be that my first post was not precise. I didn’t expect to see the admin bar links reordered, but it definitely doesn’t make sense to corrupt that menu.

    #59246
    @vapvarun

    Hi @schwarzaufweiss,
    Please attach a screenshot to get clear view
    Regards

    #59247
    @schwarzaufweiss

    Here it is…

    #59325
    @vapvarun

    Hi @schwarzaufweiss
    Seems it have some bugs
    It’s changing admin bar menus now

    I have notified developer to fix it
    Regards

    #59666
    @schwarzaufweiss

    @vapvarun When do you provide a fix?
    Thanks,
    Hans

    #59728
    @vapvarun

    Hi @schwarzaufweiss
    You can use following code inside child theme functions.php

    
    function remove_admin_bar_action() {
    // keep admin bar menu order as it is
    global $BUDDYBOSS_REORDER_TABS;
    remove_action( 'wp_before_admin_bar_render', array($BUDDYBOSS_REORDER_TABS, 'reorder_wp_menus'), 9999 );
    	}
    add_action( 'bp_init', 'remove_admin_bar_action' );
    
    

    Regards
    Varun Dubey

Viewing 9 posts - 1 through 9 (of 9 total)
  • The question ‘adminbar-links messed up’ is closed to new replies.