尊时凯龙

Magento如何修改页面标题?

2021/01/19

自建站

Magento是一个电子商务系统,其SEO功能强大,而且产品的分类标题等信息可以在后台随时进行更改,不能修改的信息通过Magento后台代码进行修改。那么,你会在Magento修改页面标题吗?具体流程如下:

找到app/design/frontend/your_package/your_theme/template/page/html/head.phtml文件夹。将<?php echo $this->getTitle() ?>  


改为<?php echo ($this->getMyTitle()) ?  Mage::getStoreConfig('design/head/title_prefix').' '.$this-  >getMyTitle().' '.Mage::getStoreConfig('design/head/title_suffix')  : $this->getTitle(); ?>


查找customer.xml的layout文件,以登陆页面标题为例:


  

      

      

      

      

      

          

      

      

          

      

      

      

    Buyer  </p><p id='390391732'>    Login  

      

      

更多