Remove new user notification and admin notification emails in GiveWP on child sites.
Snippet Type
Execute on Child Sites
Snippet
function my_give_remove_new_user_notification() {
remove_action( 'give_insert_user', 'give_new_user_notification', 10);
}
add_action( 'give_insert_user', 'my_give_remove_new_user_notification', 1 );