March 2, 2013 at 12:02 pm
#2596
Keymaster
On further inspection I found out that this is indeed a theme issue. I’ll include the fix on the next update.
For now you can fix it by following these steps:
– edit loop.php
– find this code on line 18
<div class="entry-date"><?php the_date(); ?></div>
– and replace with this code
<div class="entry-date">
<?php the_time(get_option('date_format')); ?>
</div>