• Resolved Marc1205

    (@marc1205)


    Hello,

    I would like to show an “send email again” button after user has submitted the form. Could you help me with that?

    Thanks,
    Marc

Viewing 1 replies (of 1 total)
  • Plugin Author Cristian Antohe

    (@sareiodata)

    Hi Mark,

    You could do this with a bit of code:

    * Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db
    * Add the following code to the end of it:
    *

    
    /*
     * Custom Passwordless login success message.
     */
    
    add_filter('wpa_success_link_msg', 'wpac_new_message');
    function wpac_new_message(){
        return "Please check your email. You will soon receive an email with a login link. <a href='#' onClick='window.location.reload()'>Send Again</a>";
    }
    

    * Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality

    This will Add the Send Again link that will just reload the page, allowing the user to re-enter the email / username and try again.

    There is no way currently to automatically re-send the email without the user re-entering the email or username.

Viewing 1 replies (of 1 total)
  • The topic ‘Resend email button’ is closed to new replies.