Hi guys,
I don't think the css override technique is the best option since it will hide the date for all articles...
To be able to control whether to show the article creation date or not, open file templates\gk_boutique\html\com_content\article\default.php
and change:
<div class="itemDate">
<span class="itemDateDay">
<?php echo JHTML::_('date',$this->item->created, 'd'); ?>
</span>
<span class="itemDateMonth">
<?php echo JHTML::_('date',$this->item->created, 'M'); ?>
</span>
</div>
to:
<?php if ($params->get('show_create_date')) : ?>
<div class="itemDate">
<span class="itemDateDay">
<?php echo JHTML::_('date',$this->item->created, 'd'); ?>
</span>
<span class="itemDateMonth">
<?php echo JHTML::_('date',$this->item->created, 'M'); ?>
</span>
</div>
<?php endif; ?>