2014-11-22 47 views
0

我想從我的Magento商店中刪除所有關鍵字的meta標籤和隱藏所有discrypion標籤當空刪除關鍵字的Magento和隱藏說明當空

這是可以通過local.xml中?我嘗試以下方法,但它沒有工作:

<default> 
    <reference name="head"> 
     <action method="removeItem"> 
      <type>meta</type> 
      <name>keywords</name> 
     </action> 
    </reference> 
</default> 

回答

0

爲什麼不能複製應用程序/設計/前端/基/默認/模板/頁/ HTML/head.phtml到:

應用/design/frontend//default/template/page/html/head.phtml做:

  1. 刪除以下行:

    <meta name="keywords" content="<?php echo htmlspecialchars($this->getKeywords()) ?>" /> 
    
  2. 更改以下行:

    <meta name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" /> 
    

    <?php if (!empty($this->getDescription())) :?> 
         <meta name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" /> 
        <?php endif; ?> 
    
+0

我嘗試使用local.xml儘可能mutch。但這項工作也非常出色....感謝:o) – 2014-11-22 21:30:06

-1

這不是通過layout.xml可能,你必須將模板文件頁/ HTML /頭複製。 phtml到您的主題,並作出@Sander Pham建議更改