@bigray/eshift
I modify the code of comment.php
<div <?php comment_class() ?> id=”post-<?php comment_ID(); ?>”>
Change to
<div <?php if (function_exists('comment_class') ){
comment_class(); }
else {
echo 'class="comment"'; } ?> id="post-<?php comment_ID(); ?>">