You need to edit this files:
templates/gk_news2/html/com_k2/templates/generic.php
templates/gk_news2/html/com_k2/templates/default/user.php
templates/gk_news2/html/com_k2/templates/default/tag.php
templates/gk_news2/html/com_k2/templates/default/latest_item2.php
templates/gk_news2/html/com_k2/templates/default/latest_item.php
templates/gk_news2/html/com_k2/templates/default/category_item.php
templates/gk_news2/html/com_k2/templates/default/item.php
and in each of those files you need to find line that looks this way:
- Code: Select all
<li><time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>"><?php echo JHTML::_('date', $this->item->created, 'F j, Y'); ?></time></li>
and replace it with:
- Code: Select all
<li><time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>"><?php echo JHTML::_('date', $this->item->created, 'd.m.Y'); ?></time></li>
the important part is replacing 'F j, Y' with 'd.m.Y'