Viewing 1 replies (of 1 total)
  • I am not aware of a plugin for that. It is possible to write one, but that would require quite a lot of work. You have to store the time of the last check for each user in a user meta field, add a new view (log in template) for the email verification …

    Another option is a complete reset of all user passwords. There are plugins for that. Then every user gets an email from WordPress automatically, with a link that has to be clicked in order to log in again. This way you can verify all addresses at once.

    If you do that make sure you increase the expiration time for the confirmation URL. This could be a tiny plugin like this:

    add_filter( 'password_reset_expiration', function()
    {
    	return MONTH_IN_SECONDS;
    } );

Viewing 1 replies (of 1 total)
  • The topic ‘Prompt user to update their email’ is closed to new replies.