Same problem. Don’t redirect. No email.
Infinitely says “Please wait …”
screenshot
-
This reply was modified 9 years, 3 months ago by
hadahan.
I also have the same problem. It does seem like this plugin has potential to be a very good plugin but it is dead on arrival.
If anyone is having this issue, it may have to do with the email headers when sending the new user confirmation email. This is when using SMTP to send email. The From header domain needs to match the host domain or the from email needs to be allowed(as in Amazon SES).
in the file /public/class-wp-custom-register-login-public.php around line 333 and line 503, change
$headers[] = 'From:' . get_option('blogname');
to
$headers[] = 'From:' . get_option('admin_email');
or best change them both to
$headers[] = 'From:' . get_option('blogname') . ' <' . get_option('admin_email') . '>';
or simply remove the additional email headers altogether because most smtp email plugins will handle this automatically.