Hi @gailp
Until we finish up any potential easier methods to specify these details, the best I can offer is a code snippet, provided below.
You’ll want to switch out the “fakeaddy” emails with the ones you actually want to be notified at.
This would go in your child theme/active theme functions.php file.
Let me know if you have any questions or need some help with it.
function gailp_bpro_single_admin_notice( $default_admins ) {
// BuddyPress Registration Options will be expecting an array.
$new_admins = array();
foreach(
array(
'[email protected]',
'[email protected]',
'[email protected]'
) as
$user_email
) {
$user = get_user_by( 'email', $user_email );
if ( false !== $user ) {
$new_admins[] = $user;
}
}
if ( ! empty( $new_admins ) ) {
return $new_admins;
}
return $default_admins;
}
add_filter( 'bprwg_bp_notification_users', 'gailp_bpro_single_admin_notice' );