Дублирование названий, Magento Страница забытого пароля НАЗВАНИЕ - PullRequest
1 голос
/ 20 декабря 2011

По умолчанию не-cms-страницы имеют одинаковое название самого сайта, и у меня есть учетная запись seomoz, которая сообщает мне, что у меня есть 2 страницы с одинаковым названием

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

1 Ответ

2 голосов
/ 20 декабря 2011

в вашем приложении / дизайн / интерфейс / [интерфейс] / [тема] /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>
...