Hello,
I am not using WPLMS batches, instead just BuddyPress groups. Inside of the 'Manage' tab of a group a group admin can go to 'Members' and at the bottom is the 'Add Member' option in which you type a username in and add a user to the group. Well, this brings up some privacy and security concerns for our site, can I have it so that when a group admin adds a user that they get a group request in their Invitations instead of just automatically being added into the group and letting the instructor view their profile without them having any control of this.
Thank you!
Please add the below given php code in your wplms-customizer plugin -> wplms-customizer.php file. Also use this plugin :
https://wordpress.org/plugins/invite-anyone/
add_action('init',function(){
if(class_exists('Wplms_Batches_Actions')){
$b = Wplms_Batches_Actions::init();
remove_action('bp_after_group_manage_members_admin',array($b,'add_group_members_front_end'));
}
});
This reply has been marked as private.