Hello it is me again The guy with weird subjects. What I am trying to do now is to translate the dates here :
but I can't find it anywhere
jansverre
<?php if ($this->item->params->get('show_create_date')) : ?>
<?php $article_time = strtotime($this->item->created); ?>
<span class="createdate-day">
<?php echo JHTML::_('date', $this->item->modified, '%d'); ?>
</span>
<span class="createdate-month-year">
<?php echo JHTML::_('date', $this->item->modified, '%B %Y'); ?>
</span>
<?php endif; ?>