我是magento CMS的新手。我的问题是,在我的电子商务项目中,我有两个标题:
1。主页仅适用于主页。
2。其余页面的正常标题。
我正在从头开发一个主题,我很困惑哪里有第二个标题到我的其余页面。谁能帮我这个?提前谢谢!
答案 0 :(得分:0)
我们有几种方法可以做到这一点:首先通过编辑header.phtml为所有页面设置标题(将这一个复制到主题并编辑)。然后覆盖主页的标题(按照以下步骤操作)
<nav>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</nav>
<div id="workTop">
<div class="one_third column workSquare"></div>
<div class="one_third column workSquare2"></div>
<div class="one_third column workSquare"></div>
</div>
或强>
将此代码添加到1. Enter to the admin and open the editor of the CMS pages:
2. Open for editing the page “Home page”:
3.Go to the tab “Design”:
4. Add the following text in the section “Layout Update XML”:
<reference name="header">
<block type="page/header" name="header">
<action method="setTemplate"><template>page/html/customheader.phtml</template></action>
</block>
</reference>
local.xml
不要忘记创建 <cms_index_index translate="label">
<reference name="header">
<block type="page/header" name="header">
<action method="setTemplate"><template>page/html/customheader.phtml</template></action>
</block>
</reference>
</cms_index_index>