Dear Walkys lemaine,
For this issue, please open file(\templates\html\com_k2\templates\sj-template\item.php)
and find this code:
<?php if($this->item->params->get('itemDateCreated')): ?>
<!-- Date created -->
<dd>
<span class="itemDateCreated">
<i class="icon-calendar-empty"></i>
<?php echo JHTML::_('date', $this->item->created , JText::_('M d Y')); ?>
</span>
</dd>
<?php endif; ?>
Add to below this code:
<?php if($this->item->params->get('itemHits')): ?>
<!-- Item Hits -->
<dd class="itemHits">
<?php echo JText::_('K2_READ'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('K2_TIMES'); ?>
</dd>
<?php endif; ?>
Hope this help.Thanks!