Вот вопросик как убрать Tag:в заголовке Выглядит это так Tag:название тега как можно исправить чтоб неотображался Tag
сам решил заходимм на хостин в корневую папку вашего сайта ваш сайт/components/com_tag/views/tag/tmpl/default.php на ходим там <div class="componentheading"><?php echo($tagKeyword);?></div> и меняем на <div class="componentheading"><?php echo($tag);?></div> потом находим в конце <?php $document =& JFactory::getDocument(); if($this->tagDescription){ $document->setDescription( $this->tagDescription ); }else{ $document->setDescription( $tagKeyword ); } $document->setTitle($tagKeyword); $document->setMetadata('keywords', $tag); $document->addStyleSheet(JURI::base() . 'components/com_tag/css/tagcloud.css'); ?> и меняем на <?php $document =& JFactory::getDocument(); if($this->tagDescription){ $document->setDescription( $this->tagDescription ); }else{ $document->setDescription( $tagKeyword ); } $document->setTitle($tag); $document->setMetadata($tag); $document->addStyleSheet(JURI::base() . 'components/com_tag/css/tagcloud.css'); ?> вот и всё красиво можете просто скопировать