I just upgraded from V1.2.1 to V1.5 (am LOVING the new version! LOVING it!) but am encountering a bug.
If you are a new commenter on my site and you are using IE, your comment will show up after submitting it with a message that your comment is being held for moderation. Only you can see that comment and it won't show up until I do moderate it.
However, if you're using FireFix you don't see your comment at all and you see no message that your comment is being held for moderation.
I would like this message to show up for both IE and FF users as I think it's very confusing for people to post a comment, not have it show up, and get no explanation as to why it's not showing up. Here's the code that is currently on my comments.php page:
<?php if ($comments) : ?>
<ol id="commentlist">
<?php foreach ($comments as $comment) : ?>
- <?php comment_text() ?><span class="comm-author"><?php comment_author_link() ?></span> on
" title=""><?php comment_date('n/j/y') ?> @ <?php comment_time() ?> <?php edit_comment_link('[e]','',''); ?>
<?php if ($comment->comment_approved == '0') : ?>
(Your comment is awaiting moderation)
<?php endif; ?><?php endforeach; /* end for each comment */ ?>
A friend of mine is helping me troubleshoot and his wondering if it's the way FF stores cookies as opposed to IE? Any way to fix this?