How can I allow password reset based on logins containing the @ character?
Create a custom template for forgot password and add forgot password page link to WordPress login page using theme functions.php. Please see the code given below and modify conditions as per your need. <?php /* * Template Name: Forgot Password */ global $wpdb; $error=””; $success=””; // check if we’re in reset form if( isset( $_POST[‘action’] … Read more