Hi delinea
To have it in that way you should apply 2 changes to your files
1) Edit this file /templates/ja_magz_II/helper.php and change from
public static function relTime($timespan, $granularity = 1) {
static $units = array(
'YEAR' => 31536000,
'MONTH' => 2592000,
'WEEK' => 604800,
'DAY' => 86400,
'HOUR' => 3600,
'MIN' => 60,
'SEC' => 1,
);
To :
public static function relTime($timespan, $granularity = 1) {
return JText::sprintf(JHtml::_('date', $timespan, JText::_('DATE_FORMAT_LC3')));
static $units = array(
'YEAR' => 31536000,
'MONTH' => 2592000,
'WEEK' => 604800,
'DAY' => 86400,
'HOUR' => 3600,
'MIN' => 60,
'SEC' => 1,
);
2) Open this file
/templates/ja_magz_II/html/mod_related_items/default.php and change around line 54
From :
<dd title="" class="published hasTooltip" data-original-title="Published: ">
<time itemprop="datePublished" datetime="<?php echo $item->created; ?>">
<?php echo JATemplateHelper::relTime($item->created); ?>
</time>
To:
<dd title="" class="published hasTooltip" data-original-title="Published: ">
<time itemprop="datePublished" datetime="<?php echo $item->publish_up; ?>">
<?php echo JATemplateHelper::relTime($item->publish_up); ?>
</time>


Hope it helps