In your comments.php file the one under your current theme folder there is a line of code:
replace that line with the following block of code,having a backup of the file first :
if (get_comment_type() == ‘comment’) {
echo "comment_author_email).”’ style=’padding-top: 15px’ />”;
}
else {
echo “
“;
}
comment_text();
?>
you can see the result here: Link to a post with comments
enjoy
32, studied Software engineering , doing Application Management, for Internet & New Media department at
wordpress qtranslate comment problem
2010 1,993 Comments
I did have some issues with wordpress so if you have same problem this may help you,
i mean in you comments if the date isn’t display ok with your default setting
something like %A %B %e%q, %Y at %I:%M %p
the conversion of date variable may be the reason so the original one is:
<?php printf(__(‘%1$s at %2$s’), get_comment_date(), get_comment_time()) ?>
the good one:
<?php printf(__(‘%1$s at %2$s’), get_comment_date(‘F j., Y’), get_comment_date(‘G:i’)) ?>