Open loyvis opened 2 years ago
There is a filter for this purpose:
add_filter(
'bp_group_email_subscription_enable_email_notice',
function( $retval ) {
// A list of group IDs where the 'email notice' feature should be disabled
$do_not_allow = [ 25, 68, 121 ];
if ( in_array( bp_get_current_group_id(), $do_not_allow, true ) ) {
$retval = false;
}
return $retval;
}
);
Thanks for helping. I will check it.
Hey, Great plugin. I need your help. How to disable mailing to all members in a specific group.