0

我正在为我们的电子商务商店使用 magento 1.6.1.0。唯一的问题是客户要求从登录页面中删除“客户登录”。如何从每个页面中删除 magento 默认页面标题。请有人知道这个问题的解决方案,请ping你的答案..

谢谢你提前..

此致..

4

2 回答 2

3

打开这个文件app/code/core/Mage/Customer/Block/Form/Login.php,找到“_prepareLayout()”函数。注释掉“setTitle”命令。

所以你的代码现在看起来像这样。



    protected function _prepareLayout()
    {
        //$this->getLayout()->getBlock('head')->setTitle(Mage::helper('customer')->__('Customer Login'));
        return parent::_prepareLayout();
    }

于 2012-10-18T13:12:28.693 回答
0

要修改客户登录页面,您可以编辑模板文件。尝试app/design/frontend/default/default/customer/form/login.phtml或您使用的任何主题。

于 2012-05-18T15:43:20.297 回答