<em>@outlaw77 204456 wrote:</em><blockquote>Is it possible to add AM and PM to the comment time?</blockquote>
Hi,
It is possible.
1. Uncheck “Enable timestamps”
in link:
administrator/index.php?option=com_jacomment&view=configs&group=layout
for not using timestamps in comment time
2. Edit file
componentscom_jacommentthemesYOUR COMMENT THEMEhtmlcommentsitems.php
Find code:
echo "<span class='comment-date'>". $item->date ."</span>";
Edit to
echo '<span class="comment-date">'. date("F j, Y, g:i a",strtotime($item->date)) .'</span>
Note: If you use override template function, find code in file:
templatesYOUR JOOMLA TEMPLATEhtmlcom_jacommentthemesYOUR COMMENT THEMEhtmlcommentsitems.php
Best Regards :-*