child theme problem – blank pages
-
Hi everybody,
I wrote a child theme for Thematic and I’m testing it.On my local web server and on a previous installation in my personal webspace everything went ok.
Now I installed everything in a Bluehost space and every time I try to edit something (post, page) everything goes completely blank.I searched on the web and I found that this should be a problem of my theme, so I tried to:
1) disable all the plugins;
2) disable my theme’s functions.php file.With solution number 2 everything looks ok.
So I’m debugging my functions.php to find the error, but I’m going crazy.What happens is the following:
this functions.php
<?php // // Custom Child Theme Functions // ?>is ok.
This one:
<?php // modifica la struttura del footer function pippo_footer($thm_footertext) { $thm_footertext .= 'xxx'; return $thm_footertext; } add_filter('thematic_footertext', 'pippo_footer'); //end function ?>is also ok.
But when I put together the two the problem raises.
And this is to me absolutely crazy, I really don’t understand what’s happening.Can anybody help?
Thanks,
Andrea[Please post code or markup snippets between backticks or use the code button.]
The topic ‘child theme problem – blank pages’ is closed to new replies.