Remove new user notification and admin notification emails in GiveWP

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 );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.