Hi,
I posted in Joomla 2.5 but then realized i am using the 3.0 version .. i want to remove the date and justify the text to the left. Also i want to remove the Leave a comment at the bottom of the article ,
the url is http://dev.localvalleybeef.ca/index.php ... g-contents
I replaced the following
file ../gk_startup/html/com_k2/templates/default/item.php and find this line:
CODE:
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'Y-m-d'); ?>"> <?php echo JHTML::_('date', $this->item->created, JText::_('d M')); ?> </time>
replaced it with
CODE:
<?php if($this->item->params->get('itemDateCreated')): ?>
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'Y-m-d'); ?>"> <?php echo JHTML::_('date', $this->item->created, JText::_('d M')); ?> </time>
<?php endif; ?>