Hi,
I read through the previous posts on this topic, but I only managed to break the php file, and had to restore. I hope you can help me here.
I would like to remove Notifications, and Stats from the Student pop-up login http://prntscr.com/gfmgc0
I also would like to remove Notifications, Stats, Activity, Forums. At least temporarily. I troubleshooted with some of our users, and they get a little overwhelmed by the options.
http://prntscr.com/gfmj8i
Thank you!
Hi,
You can go to wp-admin->lms->settings->logged in menu, and remove it from there, refer:
http://prntscr.com/gfobzp
Hi,
Thanks for the instructions! I think we are talking about different tabs and menu.
Your instructions helped me figure out the dropdown menu, which was the first part of my question.
But I can't find the settings for removing the tabs here:
http://prntscr.com/gn7w63
Hi,
For this right now there is no setting, you'll have to do it using custom code:
add_action('bp_setup_nav','bp_remove_menu_tabs_from_user_profile',999);
function bp_remove_menu_tabs_from_user_profile() {
bp_core_remove_nav_item('forums');
bp_core_remove_nav_item('activity');
bp_core_remove_nav_item('notifications');
}
In the above code you can add more lines to remove another tabs.
You have to add the code in the functions.php file of your child theme (if using child theme) OR the wplms-customizer.php file present in your wplms customizer plugin.