My Child Theme Doesn't Let me Log in.
-
When I activate my child them of customizr, I am unable to log into WP. I get:
Moved Temporarily
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
My style.css:
/*
Theme Name: customizr-child
Version: 1.0
Description: A child theme of Customizr
Template: customizr
Author: Shaun Hobson
*/
/* Your awesome customization starts here */
.main_menu{
font-size:25px;
font-family:”Tahoma”;
text-align: center;
}
.navbar .nav > li > a {
color: black;
}
/* Change Background, Border, Font/Color as needed */
footer#footer .colophon {
background: none repeat scroll 0 0 inherit;
border-top: 2px solid #008000;
color: #000000;
padding: none;
}
/* Change font-size, alignment as needed */
footer#footer p, footer#footer a {
padding: none;
font-size: 12px;
font-family: “Tahoma”;
text-align: center;
line-height: 16px;
}My funtions.php:
?
<?php
add_filter(‘tc_credits_display’, ‘my_custom_credits’);
function my_custom_credits(){
$credits = ‘poolbyhobson.com’;
$newline_credits = ‘Contact · Affiliate Disclosure · Privacy Policy‘;
return ‘
<div class=”span4 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Designed by Themes & Co‘).’ ·’.($newline_credits ? ‘
· ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
}
?>I reverted back to customizr and I have no problems logging in. Oviously, the problem is in my child theme. I am unable to locate it. Any help would be appreciated!
Thanx,
Hobson
- The topic ‘My Child Theme Doesn't Let me Log in.’ is closed to new replies.