Hello,
i noticed that members of a batch can be seen by anybody, even guests visiting the site. I do not want anybody too see the members name, not even the other members of the same batch. It is a privacy issue and not all of our students are happy that their names are in plain view for all to see...
I tried different codes given in buddypress forum for this matter, but it crashes the site..
Can you please help?
Thank you very much for your time.
Anca Bogdan
For this use the bellow code in your wplms-customizer.php file present in your wplms customizer plugin:
add_action( 'bp_setup_nav', 'custom_remove_group_member_tab', 15 );
function custom_remove_group_member_tab() {
bp_core_remove_subnav_item( bp_get_current_group_slug(), 'members' );
}
It works. Thank you very much! :)
anca
Thanks for confirming, so closing the topic.