如何更改Magento模块的页面标题?

时间:2011-09-25 09:20:52

标签: magento

我已成功安装magento,但网站标题仍然是magento,我尝试多次但没有更改该标题?并且没有更改小部件下的内容?那么程序是什么?

2 个答案:

答案 0 :(得分:27)

你可以通过布局文件来实现:

<reference name="head">
    <action method="setTitle" translate="title"><title>Your Title</title></action>
</reference>

或通过代码访问head block元素并在其上调用setTitle('your title')方法

$this->getLayout()->getBlock('head')->setTitle('your title'); 

grep以获取更多参考资料:

grep '>setTitle(' app/code/ -rsn

答案 1 :(得分:0)

将此功能放在该模块的“阻止”页面中

public function _prepareLayout()  
{  
    $this->pageConfig->getTitle()->set(__('Your Page Title'));  
    return parent::_prepareLayout();  
}