Disable New User Registration Email To Admin?
-
Hey there, could you please check on this for me:
1) I created a custom plugin with the following codes to disable WordPress System Email sent to Admin whenever there’s a New User Registration:
if ( !function_exists( ‘wp_new_user_notification’ ) ) :
function wp_new_user_notification( $user_id, $plaintext_pass = ” ) {
return;
}
endif;It seems to work, but my question for you is, does this also stop notification sent to the Customer after they Signup for an Account during checkout? I HOPE NOT.
For example: https://prnt.sc/r2n6z3 – and – https://prnt.sc/r2n6su
I was trying to find a solution to just stop WP from sending a notification to Admin whenever there’s a new user registration. And this is the only code I found to have work, but I wasn’t sure if it also affects the notification sent to the customer asl well? Since WP has on new user function that covers both Admin and to Users I believe.
2) On one of my previous email, I asked about the white gap space under the footer shown when there’s not enough content to cover the page. You said on an actual email it would flush down to the bottom without showing the gap. But after sending a test to my Outlook Email, I still see the gap: https://prnt.sc/r2n6vk
Let me know and Thank you in advance!
KV
- The topic ‘Disable New User Registration Email To Admin?’ is closed to new replies.