joomla tags 1.3 проблма

Discussion in 'SEO - оптимизация, продвижение' started by денис user, Apr 12, 2011.

  1. Offline

    денис user Недавно здесь

    Joined:
    Apr 12, 2011
    Messages:
    3
    Likes Received:
    0
    Gender:
    Male
    Вот вопросик как убрать Tag:в заголовке
    Выглядит это так Tag:название тега
    как можно исправить чтоб неотображался Tag
     
  2.  
  3. Offline

    денис user Недавно здесь

    Joined:
    Apr 12, 2011
    Messages:
    3
    Likes Received:
    0
    Gender:
    Male
    сам решил
    заходимм на хостин в корневую папку вашего сайта
    ваш сайт/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');
    ?>
    вот и всё красиво

    можете просто скопировать
     

Share This Page

Loading...