This fix is based on joomla 2.5 version of Corporate 2 template however it is same changes in other templates or template versions, so search for similar text if line number does not match.
Find File: "\templates\gk_corporate2\html\com_content\article\default.php"
Find Line: 154
- Code: Select all
<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE', JHTML::_('date',$this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
Replace with below code
- Code: Select all
<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHTML::_('date',$this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
Make sure Published parameter is on from articles option.
See you around...