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

    #46844
    @communityartistry

    After enabling buddyboss media, the section “Docs” began showing up on the logged in user profile, along with “Photos”. Both “docs” and “photos” link to upload photos. I have deactivated and deleted the plugin and the “Docs” section is still displaying…. It now links to the Buddypress user profile.

    How do I remove “Docs”?

    Thanks,
    Ajay

    Answers

    #46925

    Anonymous
    @

    Hi @communityartistry.
    please include following function in your child theme functions.php

    
    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • The question ‘Doc Section’ is closed to new replies.