2012-05-11 43 views

回答

0

要修改客戶登錄頁面,您可以編輯該模板文件。嘗試app/design/frontend/default/default/customer/form/login.phtml或您正在使用的主題。

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(); 
    } 

+0

FYI ...應該從上面的代碼中刪除''.. – BENN1TH

相關問題