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!
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'))
?>
To remove this please go to wp-admin -> LMS -> Settings -> General -> Logged in menu. Refer :
http://prntscr.com/k4afw5
Thanks for confirmation, closing this topic as your issue is resolved now.