Hi @waddelljbcfw,
I have updated the override code in the tags.php file (in ja_teline_v/html/layouts/joomla/content/info_block/ folder).
Change from:
<a href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . '-' . $tag->alias)) ?>" class="<?php echo $link_class; ?>">
<?php echo $this->escape($tag->title); ?>
</a>
to:
<a href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($tag->alias)) ?>" class="<?php echo $link_class; ?>">
<?php echo $this->escape($tag->title); ?>
</a>
It's working fine now.