Hi @clrmedia,
Please open file root_foldertemplatesja_teline_vhtmllayoutsjoomlacontentlinkevent.php and look for this code :
<span class="date"><?php echo JHtml::_('date', $item->params->get('ctm_start',''), 'DATE_FORMAT_TELINE_LC1'); ?></span>
<span class="month-year"><?php echo JHtml::_('date', $item->params->get('ctm_start',''), 'DATE_FORMAT_TELINE_LC2'); ?></span>
then update as below :
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
<span class="date"><?php echo JHtml::_('date', $item->params->get('ctm_start',''), 'DATE_FORMAT_TELINE_LC1'); ?></span>
<span class="month-year"><?php echo JHtml::_('date', $item->params->get('ctm_start',''), 'DATE_FORMAT_TELINE_LC2'); ?></span>
</a>