Members Dashboard Configuration

Home Forums Legacy Support Support queries How-to & Troubleshooting Members Dashboard Configuration

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #241984
    Startup07
    Participant
    Hello WPLMS Team, I hope this finds you doing well. I would like to remove several menu items on the Members Dashboard. Is this possible? Please view this screenshot for specific details: https://snipboard.io/70WUPb.jpg   Basically, I don't need several of the menu items like "Buddy Drive," "Messages," "Courses," and "Stat." How do I go about minimizing these menus in the dashboard? Thank you so much for your assistance. :)
    #242031
    logan
    Member
    #242105
    Startup07
    Participant
    This reply has been marked as private.
    #242148
    logan
    Member

    Hello,

    Please paste this snippets in your wp-admin >>> plugins >>> editor >>> wplms-customizer plugin >>> wplms-customizer.php

    add_action( 'bp_actions', 'remove_member_profile_tabs', 5 );

    function remove_member_profile_tabs() {

    global $bp;

    bp_core_remove_nav_item( 'activity' ); //for activity tab removal

    bp_core_remove_nav_item( 'forums' ); //for forums tab removal

    bp_core_remove_nav_item( 'groups' ); //for group tab removal

    bp_core_remove_nav_item( 'messages' ); //for messages tab removal

    bp_core_remove_nav_item( 'friends' ); //for friends tab removal

    bp_core_remove_nav_item( 'course' ); //for course tab removal

    bp_core_remove_nav_item( 'achievements' ); //for achievements tab removal

    bp_core_remove_nav_item( 'notifications' ); //for notifications tab removal

    }

    Refer: http://prntscr.com/ms6htq

    #242240
    Startup07
    Participant
    This reply has been marked as private.
    #242312
    logan
    Member
    goto wp-admin >> pages >> delete buddydrive page. or goto wp-admin >> settings >> buddypress >> pages >> select none for buddypress.
    #242418
    Startup07
    Participant
    Thanks for all your help, Logan. Let's close this ticket :)
    #242434
    Veronica
    Moderator
    thanks for your confirmation.closing this topic.
Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Members Dashboard Configuration’ is closed to new replies.