Hi
I have problem with user registration. When I register user in normal mode sitre urle/wp-login etc I got notification email for new registered user but when I use your custom made pop up user registration form new user doesn’t get notification. Login and password work good both on your custom made login form and original wordpress. I check it out on two diffrent servers one on apache one on nginx. I think that there is some issue maybe in td-login.php file but I’m not sure at all.
Hi,
We have some reports about this and I have added this issue on our list to investigate it. If there is a problem it will be fixed as soon as possible.
Thanks for reporting!
Hi hi so I found a solution 🙂
in file td-ajax.php (theme->includes->wp_booster) line 372 you use
function wp_new_user_notification($user_id, $random_password);
this function was changed with WordPress 4.3.1 to
function wp_new_user_notification( $user_id, $deprecated = null, $notify = ” )
so what I do. I just change your wp_new_user_notification($user_id, $random_password); to
wp_new_user_notification($user_id, null, ‘both’ ); and we are at home now 🙂
Now when user register using your custom form both admin and user got notification email.
if we change both to admin only admin get email about new user and that is all folks 😀
Hi lukas,
Thank you for sharing this! I have added your solution to our list and we will fix it as soon as possible.
I hope this is fixed on the next update because since WordPress v4.3.1. I could of not even noticed the problem and no one was able to register but that is not the case because I would of saw new users on dashboard under users and probably got emails from contact page of what is going on.
I just noticed the issue of no emails after signup when testing a new user to the site. After doing lukas fix it worked like a charm. Please fix it as soon as possible so we don’t have to add this every time there is an update.
Sorry, this is for Newsmag too. I had to change it.
-
This reply was modified 10 years by
doucare1971.
-
This reply was modified 10 years by
doucare1971.
Hi,
We also tested @lukas solution and it will be fixed as soon as possible for both theme. The theme use the default wordpress registration that’s why appeared this issue after wordpress update and the functions is deprecated.
Thanks and sorry for inconvenience!
