Comments not showing up in "pages"
-
Hi,
We’ve checked out a few solutions already posted on the forum and tried. Unfortunately the solutions didn’t work. Either we’ve done it wrongly or there’s something else.
Our blog posts shows comments perfectly, but the “Pages” page will not show comments made, but it does have an area to post comments. Obviously this bit is working as we’ve received comments and approved them.
If it helps, the theme we are using is “Bueno” by WooThemes.
https://narrazeevisuals.com/?page_id=4 this is one of our pages
Our pages.php code is
<?php get_header(); ?> <div id="content" class="col-full"> <div id="main" class="col-left"> <?php if ( function_exists( "yoast_breadcrumb" )) { yoast_breadcrumb('<div id="breadcrumb"><p>','</p></div>'); } ?> <?php if (have_posts()) : $count = 0; ?> <?php while (have_posts()) : the_post(); $count++; ?> <div class="post"> <h1 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <div class="entry"> <?php the_content(); ?> </div> </div><!-- /.post --> <?php if ('open' == $post->comment_status) : ?> <?php comments_template(); ?> <?php endif; ?> <?php endwhile; else: ?> <div class="post"> <p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p> </div><!-- /.post --> <?php endif; ?> </div><!-- /#main --> <?php get_sidebar(); ?> </div><!-- /#content --> <?php get_footer(); ?>
Is there anything that needs to be changed? Please help and thank you for your time, we really appreciate it!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Comments not showing up in "pages"’ is closed to new replies.