I think the problem is with this line in components/com_jcomments/tpl/default/tpl_comment.php
<span class="comment-date"><?php echo JCommentsText::formatDate($comment->datetime, JText::_('DATETIME_FORMAT')); ?></span>
The db field is date not datetime for me but when I changed it to
<span class="comment-date"><?php echo JCommentsText::formatDate($comment->date, JText::_('DATETIME_FORMAT')); ?></span>
this still didn't work
I'm using
<span class="comment-date"><?php echo $comment->date ?></span>
as a workaround but I'd really like to figure out how to format this by linking to what's set in the language file format to. I think that's what the original line of code is doing but I can't get it to work.
I'm not clear on how joomla commands like JCommentsText::formatDate work - this looks fairly similar to a normal php date formatting function but... if anyone could let me know how it works that would be great.
Thanks in advance
