Hi
In lines 106-108 of the file /html/com_k2/default/item.php You will find this code:
- Code: Select all
<?php if($this->item->params->get('itemDateCreated')): ?>
<time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>"><?php echo JHTML::_('date', $this->item->created, JText::_('j')); ?><span><?php echo JHTML::_('date', $this->item->created, JText::_('M')); ?></span></time>
<?php endif; ?>
Remove this code and in line 103, which looks like this:
- Code: Select all
<li class="date-hidden"><time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>"><?php echo JHTML::_('date', $this->item->created, JText::_('F j Y')); ?></time></li>
remove
- Code: Select all
class="date-hidden"
from fist part of it. In the same line code:
- Code: Select all
JText::_('F j Y')
will allow You to change the format. Here is a lint of available options:
http://php.net/manual/pl/function.date.phpAbout the 404. I meant a page where the link I can click and is leading to a 404 page can bee seen.