BuddyBoss Home – Web Support Forums Solutions Social Learner LearnDash Social Learner Docs misalligned

Tagged: ,

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

    #46755
    @mln83

    Just updated to version 1.0.3 of BuddyBoss for LearnDash and noticed a new button in the personal view named Docs.

    The button link is however graphically misaligned with the other button links (Activity, Profile, Notifications, …)

    I was also wondering whether its possible to disable some of these extra button links?

    Answers

    #46872
    @vapvarun

    Hi @mln83

    please include following function in your child theme inside 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

    #46975
    @mln83

    Thank you very much. Looking forward to the update 🙂

    Is it possible to disable certain buttons in ”Docs, Activity, Profile, Notifications, …”?

    #46984

    Anonymous
    @

    Hi @mln83 , BuddyPress do not provide an quick option to change them, you can view these tutorial they will help you to work on them
    to remove nav bar
    bp_core_remove_nav_item() function will be used
    http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
    https://bp-tricks.com/snippets/code/arrange-group-profile-navigation-menu/

    Regards
    Pallavi

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘LearnDash Social Learner Docs misalligned’ is closed to new replies.