I don’t think I changed the urls for the site. The last thing I did was copy and paste the following edit in the function.php file. And after this edit the problems started. So I deleted the edit below and the problem still did not go away.
function remove_lostpassword_text ( $text ) {
if ($text == ‘Lost your password?’){$text = ”;}
return $text;
}
add_filter( ‘gettext’, ‘remove_lostpassword_text’ );
add_filter(‘login_errors’,create_function(‘$a’, “return null;”));
function my_login_head() {
remove_action(‘login_head’, ‘wp_shake_js’, 12);
}
add_action(‘login_head’, ‘my_login_head’);