Currently, every comment has the same date as the original post.
Theme functions PHP:
<div class="comment-meta commentmetadata">
<?php comment_author_link() ?><?php _e(' said: ','my-theme-here');?>
<?php comment_date(__('Y.m.d','my-theme-here')) ?> <?php comment_time(__('H:i','my-theme-here')) ?>
</div>
Any thoughts? (or other code I need to paste here)
As far as I can tell from the WordPress docs, and looking at a few different themes, including the default theme, comment_time doesn’t take any arguments. Try
<?php comment_time() ?>instead. Same with<?php comment_date() ?>