would it be possible to make a small official change to the comments.php? The reason is I use the SI CAPTCHA Anti-Spam plugin that can be found here http://www.642weather.com/weather/scrip ... aptcha.php to secure the comments and other forms on my page. With the original code at the comments.php here:
Code: Select all
<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div>
<p>
<?php comment_id_fields(); ?>
<input name="submit" id="submit" type="submit" tabindex="5" value="<?php _e('Submit Comment', "suf_theme"); ?>" class="Cbutton" />
</p>
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php } ?>
</div>
Code: Select all
<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div>
<p>
<?php comment_id_fields(); ?>
<?php do_action('comment_form', $post->ID); ?><p> </p>
<input name="submit" id="submit" type="submit" tabindex="5" value="<?php _e('Submit Comment', "suf_theme"); ?>" class="Cbutton" />
</p>
</form>
<?php } ?>
</div>
Please let me know if this would be possible or would cause a problem.
Many thanks in advance!