Editing BuddyPress Menu and Simple Stats Widget Issue

Home Forums Legacy Support Support queries How-to & Troubleshooting Editing BuddyPress Menu and Simple Stats Widget Issue

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #198695
    ECDS
    Participant

    As of 2/26/19 we have the latest version of the theme and all plugins. There's nothing else running on our site but what WPLMS requires.

    1.) I've searched through the forums but all solutions for this issue are old and I'm wondering what the latest is. I'd like to remove items from the BuddyPress profile menu for members. Is there any way to do that without editing theme files? If not, what code do you recommend for editing the menu and where should that code be inserted?

    2) The Simple Stats widget - when set to Finished Courses - displays 0 for our test student even though they've finished the class and their class has been evaluated. The Simple Stats widgets for Assignments and Units work just fine.

    #198788
    logan
    Member
    Hello, you can try these setting under wp-admin > wplms > Buddypress. Refer: http://prntscr.com/mram8p For other issue: Please share your wp-admin url and credentials in a private reply so that i can check the issue.
    #198847
    ECDS
    Participant
    This reply has been marked as private.
    #198848
    ECDS
    Participant
    This reply has been marked as private.
    #198889
    logan
    Member
    Hello, You forgot to share page url. Have a look on these setting for privacy of menu. http://prntscr.com/mrpeuu
    #198972
    ECDS
    Participant
    This reply has been marked as private.
    #198973
    ECDS
    Participant
    I specifically want to cut down the items in the individual profile menu. Right now there are 11 items and a "Sample page" on that menu and I want to remove items.
    #199059
    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
Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Editing BuddyPress Menu and Simple Stats Widget Issue’ is closed to new replies.