More Strange Behavior
Permalink
Hi All,
I was having trouble with my theme not displaying some content, so after getting some help from the community, I added the following to my view.php file
<?php print $innerContent; ?>
I thought the problem was fixed, but now it appears the same pages are displaying the content twice. I can't delete the duplicate area/content. The problem goes away when I switch themes but I can't for the life of me figure out what I've done wrong in my theme. Any help would be much appreciated. I am also willing to pay someone a bit of money to go in and inspect my code and find the problem. I've attached a screenshot as an example of the user profile page.
Thanks,
Nick
I was having trouble with my theme not displaying some content, so after getting some help from the community, I added the following to my view.php file
<?php print $innerContent; ?>
I thought the problem was fixed, but now it appears the same pages are displaying the content twice. I can't delete the duplicate area/content. The problem goes away when I switch themes but I can't for the life of me figure out what I've done wrong in my theme. Any help would be much appreciated. I am also willing to pay someone a bit of money to go in and inspect my code and find the problem. I've attached a screenshot as an example of the user profile page.
Thanks,
Nick
If that doesn't work try copying your default text, and replacing the content and sidebar parts of it with
<div id="central" class="no-sidebar"> <div id="body"> <?php print $innerContent; ?> </div> <div class="spacer"> </div> </div>which is basically the same, just without the load header and footer text.