hello monodistortion.
My comments cannot translate,but the button is display.
Here my comments code.
<div id=”comments”>
<?php $black_or_white = ‘black’; ?>
<?php if ( $comments ) : ?>
<?php foreach ($comments as $comment) : ?>
<div class=”comment-box <?php echo $black_or_white; ?>”>
<?php $black_or_white = (‘black’==$black_or_white) ? ‘white’ : ‘black’; ?>
<?php echo get_avatar( get_comment_author_email(), $size = ’48’ ); ?>
<div class=”comment-info”>
<span class=”comment-author”><?php comment_author_link() ?></span>
<span class=”comment-stat”> Posted on <?php comment_date() ?> at <?php comment_time() ?> <?php edit_comment_link(__(“Edit This”),’ – ‘); ?></span>
</div><!– /Comment-Info –>
<div class=”comment-text”>
<?php comment_text() ?>
</div><!– /Comment-Text –>
</div><!– /Comment-Box –>
<?php endforeach; ?>
<?php else : // If there are no comments yet ?>
<?php endif; ?>
</div><!– /Comments –>