Missing Footer and everything else below comments
-
Hello, I cannot for the life of me figure out why my footer is missing along with everything else below the comments section. When looking at the page.php, everything after
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" class="post"> </div> <a name="comment"><div class="spacer_1"</div></a> <div id="comments"><?php comments_template(); ?></div> <?php endwhile;?> <?php endif; ?>
does not execute. Namely the “<?php comments_template(); ?>” call.
I’ve actually deleted everything below the code above and it works fine but still no footer as well as a google search box and Facebook Like button. It is just not there. So the “<?php get_footer();?>” never gets called.
If I delete out
<div id="comments"><?php comments_template(); ?></div>
Everything is fine except no commenting. This wasn’t always like this. I’ve tried uninstalling the “comment avatars” plugin as well as the “wp-thread-comment” plugin to no avail. When looking at the source code of a web page it just stops after executing the wp-thread-comment plugin. After uninstalling that as well as the comment avatars it still stops. It’s like it never exits the comments_template() function. I have never modified the comment-template.php file or the comments_template() function. I even copied over another comment-template.php file over from another wordpress install and same deal. I’ve since restored the original php file.
Any help would be greatly appreciated. My site is: https://www.seizetheday-monterey.com
- The topic ‘Missing Footer and everything else below comments’ is closed to new replies.