Hi romolo
You can try with this trick
Edit this file /templates/ja_charity/html/layouts/joomla/content/item/event.php and make a backup of it saving it in case something goes wrong.
Then around line 187 find this code
<address>
<strong><i class="fa fa-building"></i> <?php echo $item->params->get('ctm_venue'); ?></strong><br />
<i class="fa fa-location-arrow"></i> <?php echo $item->params->get('ctm_addr1'); ?> <?php echo $item->params->get('ctm_addr2'); ?>
</address>
Immediatly above it add this
<date>
<i class="fa fa-calendar"></i> <?php echo JText::_('Start date'); ?> <?php echo $item->params->get('ctm_start'); ?><br/>
<i class="fa fa-calendar"></i> <?php echo JText::_('End date'); ?> <?php echo $item->params->get('ctm_end'); ?> <br/>
</date>
It will be as img below
Hope it helps