hi jeremy,
i do not have any spam plugins or modules activated:
would this be a problem with comments php? what should i delete and/or replace below?
<?php
/***
* Comments Template
*
* This template displays the current comments of a post and the comment form
*
*/
if ( post_password_required()) : ?>
<p><?php _e(‘Enter password to view comments.’, ‘dynamicnewslite’); ?></p>
<?php return; endif; ?>
<?php if ( have_comments() or comments_open() ) : ?>
<div id=”comments”>
<?php if ( have_comments() ) : ?>
<h3 class=”comments-title”><span><?php comments_number( ”, __(‘One comment’,’dynamicnewslite’), __(‘% comments’,’dynamicnewslite’) );?></span></h3>
<?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) : ?>
<div class=”comment-pagination clearfix”>
<div class=”alignleft”><?php previous_comments_link(); ?></div>
<div class=”alignright”><?php next_comments_link() ?></div>
</div>
<?php endif; ?>
<ul class=”commentlist”>
<?php wp_list_comments( array(‘callback’ => ‘dynamicnews_list_comments’)); ?>
<?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) : ?>
<div class=”comment-pagination clearfix”>
<div class=”alignleft”><?php previous_comments_link() ?></div>
<div class=”alignright”><?php next_comments_link() ?></div>
</div>
<?php endif; ?>
<?php endif; ?>
<?php if ( comments_open() ) : ?>
<?php comment_form(array(‘comment_notes_after’ => ”)); ?>
<?php endif; ?>
</div>
<?php endif; ?>