Seems to work pretty well, except on moderated comments. The comments shows up for the commenter, and they don't know that their comment has been held for moderation.
Seems to work pretty well, except on moderated comments. The comments shows up for the commenter, and they don't know that their comment has been held for moderation.
Was able to fix it by adding a few lines in comments.php:
<div class="body">
<?php if(function_exists('get_avatar'))echo get_avatar($c->comment_author_email, '80'); ?>
<?php comment_text();?>
<?php if ($c->comment_approved == '0') : ?>
<em><?php _e('Your comment is awaiting moderation.') ?></em>
<br />
<?php endif; ?>
</div>This topic has been closed to new replies.