• When form is submitted it just spins and goes nowhere. No emails are sent or pages redirected to appear. It does create the registration in the back end but front end does nothing but sit and spin.

    Please let me know what to do. This looks like a very nice plugin but not nice if it does not work.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Same problem. Don’t redirect. No email.
    Infinitely says “Please wait …”
    screenshot

    • This reply was modified 7 years, 9 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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Registration Stuck’ is closed to new replies.