• Resolved ubastisupport

    (@ubastisupport)


    When trying to use the plugin, login works fine but register does not.

    After filling out register fields and clicking “Register button”, nothing happens.

    For a few seconds, the register button appears “pushed down” then back to normal.

    Trying to use the registered account on login wont work, and no user was added. No errors given either.

    Why is this occurring? I’d share a link but don’t want my site publicly displayed here.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    Could you try visiting your WP Dashboard > Theme My Login > General settings and uncheck “Enable AJAX requests”. Does it work then?

    Thread Starter ubastisupport

    (@ubastisupport)

    I went ahead and did that, now upon clicking it starts trying to load and work properly but inevitably comes to this:

    This page isn’t [domain] redirected you too many times.
    Try clearing your cookies.
    ERR_TOO_MANY_REDIRECTS

    Thread Starter ubastisupport

    (@ubastisupport)

    Nevermind my apologies, I also had a conflicting page.

    Your solution fixed the issue, thank you very much for the fast response.

    One more question, how can I add a checkbox for “Agree to Terms & Privacy Policy”?

    Also how to remove the “Hint” text for register?

    Thank you again.

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Thread Starter ubastisupport

    (@ubastisupport)

    Thanks, but where do I insert this?

    Also like I mentioned, how do I remove the hint text? Not just hide it (so it doesnt have empty space)

    Plugin Author Jeff Farthing

    (@jfarthing84)

    https://docs.thememylogin.com/article/63-using-theme-my-login-custom-php

    
    function remove_tml_registration_indicator_hint() {
        tml_remove_form_field( 'register', 'indicator_hint' );
    }
    add_action( 'init', 'remve_tml_registration_indicator_hint' );
    

    This did not work for me.

    And I was not able to find the theme-my-login-custom.php, but just the theme-my-login.php file. Edit in that did not remove the following text from the registration page:

    “Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! ” ? $ % ^ & ).”

    Any advice?

    Plugin Author Jeff Farthing

    (@jfarthing84)

    The file theme-my-login-custom.php has to be created, as described here. Also, there was a typo in my code. It should be:

    
    function remove_tml_registration_indicator_hint() {
        tml_remove_form_field( 'register', 'indicator_hint' );
    }
    add_action( 'init', 'remove_tml_registration_indicator_hint' );
    
Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Register Form Issues’ is closed to new replies.