Okay going to reinsert it again (just for you
) - you have to edit components/com_matukio/views/event/tmpl/modern.php
Just search for COM_MATUKIO_BEGIN - and replace the two table lines (begin and end) with the following code
<?php if ($this->event->showbegin > 0) :?>
<tr>
<td class="key" width="80px">
<?php echo JTEXT::_('COM_MATUKIO_BEGIN'); ?>
</td>
<td>
<?php echo $htx1 . JHTML::_('date', $this->event->begin
, MatukioHelperSettings::getSettings('date_format_small', 'd-m-Y, H:i')) . $htx2; ?>
</td>
</tr>
<?php endif; ?>
<?php if ($this->event->showend > 0) :?>
<tr>
<td class="key" width="80px">
<?php echo JTEXT::_('COM_MATUKIO_END'); ?>
</td>
<td>
<?php echo $htx1 . JHTML::_('date', $this->event->end
, MatukioHelperSettings::getSettings('date_format_small', 'd-m-Y, H:i')) . $htx2; ?>
</td>
</tr>
<?php endif; ?>
Yves