Modification of Buddypress Menu

Home Forums Legacy Support Support queries Styling issues Modification of Buddypress Menu

Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #164770
    mfarwell80
    Spectator
    Hello, I'm looking to modify the headings and what is displayed on the drop down menu when a user is logged in. Where it has dashboard, courses, stats, etc.  I want to change some of the items on there and have different URLs on some of them.  Where do I do this at?   Thanks!
    #164867
    Mark Morgan
    Spectator
    Please follow this tip to add/edit element from the logged  in login panel.  Refer : https://wplms.io/support/knowledge-base/addedit-custom-links-in-the-logged-in-login-panel/
    #168527
    mfarwell80
    Spectator
    Hello, when I try to remove a certain menu heading, it's removing all of them except "dashboard".  Here is my customizer_class.php <?php if(!class_exists('WPLMS_Customizer_Plugin_Class')){ class WPLMS_Customizer_Plugin_Class{ public function __construct(){   add_filter('wplms_logged_in_top_menu',array($this,'loggedin_login_panel')); function loggedin_login_panel($loggedin_menu){ unset($loggedin_menu['stats']); // stats, courses, messages, notifications, groups return $loggedin_menu; }     } // END public function __construct       } // END class WPLMS_Customizer_Class } // END if(!class_exists('WPLMS_Customizer_Class'))   ?>  
    #168610
    Mark Morgan
    Spectator
    To remove this please go to wp-admin -> LMS -> Settings -> General -> Logged in menu. Refer : http://prntscr.com/k4afw5  
    #168649
    mfarwell80
    Spectator
    That worked.  Thanks!
    #168680
    Mark Morgan
    Spectator
    Thanks for confirmation, closing this topic as your issue is resolved now.
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Modification of Buddypress Menu’ is closed to new replies.