2011-12-20 66 views
1

默認情況下,非CMS的網頁有網站本身的相同的標題,和我有報告我的SEOmoz帳戶,我有2頁標題相同複製標題,Magento的忘記密碼頁面標題

http://www.theprinterdepo.com/contacts/ http://www.theprinterdepo.com/customer/account/forgotpassword/

我真的需要改變這兩頁的標題,而在Magento中有點複雜,因爲我猜想它在某些XML文件上。

問題是我不知道在哪一個。

我創建這個文件: /home/theprint/public_html/app/design/frontend/default/MAG060062/layout/local.xml

<?xml version="1.0"?> 
<layout version="0.1.0"> 
<contacts_index_index translate="label"> 
     <label>Contact Us Form</label> 
     <reference name="head"> 
      <action method="setTitle" translate="title" module="contacts"><title>Contact Us</title></action> 
     </reference> 
    </contacts_index_index> 
    <customer_account_forgotpassword translate="label"> 
     <reference name="head"> 
      <action method="setTitle" translate="title" module="customer"><title>Forgot Your Password</title></action> 
     </reference> 
    </customer_account_forgotpassword> 
</layout> 
</xml> 

但是它不工作

THX

回答

2

在您的應用程序/設計/前端/ [接口]/[主題] /layout/local.xml,添加:

<contacts_index_index translate="label"> 
     <label>Contact Us Form</label> 
     <reference name="head"> 
      <action method="setTitle" translate="title" module="contacts"><title>Contact Us</title></action> 
     </reference> 
    </contacts_index_index> 
    <customer_account_forgotpassword translate="label"> 
     <reference name="head"> 
      <action method="setTitle" translate="title" module="customer"><title>Forgot Your Password</title></action> 
     </reference> 
    </customer_account_forgotpassword> 
+1

文件的實際路徑是app/design/frontend/[interface]/[theme] /layout/local.xml – 2011-12-20 09:38:46

+0

該文件不存在!我甚至沒有在網站的根目錄上的設計文件夾。我搜索了local.xml文件,而我發現的唯一一個是mysql用戶和密碼在/ app/etc/local/ – 2011-12-20 09:41:09

+0

@DickLaurent的位置,我確實很懶。我已經編輯了我的回答 – OSdave 2011-12-20 09:41:43