Remove items from login drop down

Home Forums Legacy Support Support queries How-to & Troubleshooting Remove items from login drop down

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #45405
    emberin
    Spectator
    Hi, Could you please tell us which file do we need to edit to remove below items from the login drop down?
    • Dashboard

    • Stats

    • Inbox

    • Notifications

    -Groups Thanks.!

    #45524
    H.K. Latiyan
    Participant
    Please use this code in your wplms-customizer.php file present in your wplms customizer plugin: add_filter('wplms_logged_in_top_menu','loggedin_profile_menu_dropdown',999); function loggedin_profile_menu_dropdown($loggedin_menu) {   unset($loggedin_menu['dashboard']);   unset($loggedin_menu['messages']);   unset($loggedin_menu['notifications']);   unset($loggedin_menu['stats']);   unset($loggedin_menu['groups']);   return $loggedin_menu; }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Remove items from login drop down’ is closed to new replies.