Code-Snippets-Functions/Execute a function on a child site/GiveWP/remove-new-user-notification.txt

5 lines
201 B
Text

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