代码之家  ›  专栏  ›  技术社区  ›  pixeltocode

Magento-联系人页面上的页面标题

  •  0
  • pixeltocode  · 技术社区  · 14 年前

    如何更改页面标题 <title> Magento的默认联系人页面?

    谢谢

    3 回复  |  直到 13 年前
        1
  •  2
  •   Chris Norton    14 年前

    您可以通过覆盖设计中的“contacts.xml”布局文件来更改标题。调整以下行以适应:

    <action method="setHeaderTitle" translate="title" module="contacts"><title>Contact Us</title></action>
    
        2
  •  3
  •   nickb    13 年前
    <reference name="head">
         <action method="setTitle" translate="title" module="contacts">
              <title>Online Shopping, Shop Mobile online</title>
         </action>
    </reference>
    
        3
  •  1
  •   Marek Dajnowski    13 年前

    打开或查找以下文件: app/design/frontend/base/default/layout/contacts.xml

    在“联系人”和“索引”标签之间添加:

        <reference name="head">
    
            <action method="setTitle"><title>Contact Us - Your Store Name</title></action>
    
        </reference>
    

    最好的, 马立克

    推荐文章