I am a noob so forgive my ignorance. I installed the AWP plugin yesterday and configured it as best I could. Th point of me doing this was so that comments could be seen from the index of my blog. This part actually works fine. The problem is that when you click on the post to view the single post page it displays two identical comment boxes. If I un tick “«—Have Comments open by default on single post pages?” and “«—Have Comments open by default on pages?” Then both comment boxes go away. If I tick either of these option then the duplicate comment boxes come back again. I have searched for a solution but haven’t found anything. Any help would be greatly appreciated.
Here is a link to my blog:
http://www.taprootphotography.com/blog
Here’s what my index.php HTML looks like.
<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?><!-- item --> <div class="item entry" id="post-<?php the_ID(); ?>â> <div class="itemhead"> <h1><a href="<?php the_permalink() ?>â rel=âbookmarkâ><?php the_title(); ?></a></h1> <div class="date"><?php the_time('F jS, Y') ?> </div> <?php the_content('Continue reading »'); ?> <small class="metadata"> Filed under <span class="category"><?php the_category(', ') ?> </span> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('Comment (0)', ' Comment (1)', 'Comments (%)'); ?></small> <div style="clear:both;"></div><div style="clear:both;"></div> </div></div><!-- end item --> <?php comments_template(); // Get wp-comments.php template ?> <?php do_action('awp_comments'); ?><?php do_action('awp_comment_link'); ?> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> <p><br /></p> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isnât here.</p> <?php endif; ?><!-- end content --> </div> <div id="secondary"> <?php include(TEMPLATEPATH."/l_sidebar.php");?> <?php include(TEMPLATEPATH."/r_sidebar.php");?> </div><?php get_footer(); ?>- Use the following to copy and paste the code.