BuddyBoss Home – Web Support Forums Themes Boss. theme Profile Tab "Docs" is not removed after deinstall of Buddypress Docs plugin

Tagged: 

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

    #47480
    @kimbo128

    Profile Tab “Docs” is not removed after deinstall of Buddypress Docs plugin.
    I can not get rid of this profile menu item. When clicked, it redirects to “Profile” Tab.

    I have tried to delete the plugin manually and also to do it with your plugin “reorder tabs”.

    Thanks in advance

    Answers

    #47514

    Anonymous
    @

    Hi @kimbo128, please include following function in your child theme :

    
    add_action( 'init' , 'bb_remove_docs_tab' , 15 );
    function bb_remove_docs_tab() {
            if(!is_plugin_active( 'buddypress-docs/loader.php' ) ) {
    remove_action('template_redirect', 'bb_child_doc_menu_count_tabs', 999);
    }
    }
    

    We have fixed this issue inside development version , it will be updated shortly..

    Regards
    Pallavi

    #47524
    @kimbo128

    Thank you so much! I have spend 3hh on this yesterday without success.

    #47578
    @vapvarun

    🙂 Glad , I will close this topic

    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Profile Tab "Docs" is not removed after deinstall of Buddypress Docs plugin’ is closed to new replies.