cpcexamprep
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Decrease Header PaddingThank you. I did not know that each theme had its own forum.
Forum: Fixing WordPress
In reply to: Formatting & theme lost and I dont know why?I fixed it. I got my theme back by reinstalling it.
Forum: Fixing WordPress
In reply to: Formatting & theme lost and I dont know why?I do NOT have a backup copy of the theme files!
Forum: Fixing WordPress
In reply to: Formatting & theme lost and I dont know why?I am using the Xclusive theme
Forum: Fixing WordPress
In reply to: Formatting & theme lost and I dont know why?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’);