You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
);
Hey,
Great plugin.
I need your help.
How to disable mailing to all members in a specific group.
The text was updated successfully, but these errors were encountered: