Hallo,
sorry, dass geht nun wie folgt.
1.) Kopieren sie die Datei >
warp/systems/joomla/layouts/com_content/category/blog_item.php in das Verzeichnis
html\com_content\category
2.) Nun öffnen bzw editieren sie die soeben kopierte Datei >
\html\com_content\category\blog_item.php wie folgt
Fügen sie folgenden Code ein, Line 47 ( Siehe Bild// set tags
$tags = '';
if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) {
JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php');
foreach ($this->item->tags->itemTags as $i => $tag) {
if (in_array($tag->access, JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')))) {
if($i > 0) $tags .= ', ';
$tags .= '<a href="'.JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . ':' . $tag->alias)).'">'.$this->escape($tag->title).'</a>';
}
}
}
$args['tags'] = $tags;