boonebgorges / buddypress-group-email-subscription

Fine-grained email subscription for activity in BuddyPress groups
36 stars 33 forks source link

How to disable mailing to all members in a specific group. #219

Open loyvis opened 2 years ago

loyvis commented 2 years ago

Hey, Great plugin. I need your help. How to disable mailing to all members in a specific group.

boonebgorges commented 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;
  }
);
loyvis commented 2 years ago

Thanks for helping. I will check it.