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.