Magento1: Меняем Title в Head через XML в Magento

Изменим заголовок для страниц в Magento.

Для этого добавим кусок кода в xml файл, в layout активной темы Magento.

<reference name="head">
    <action method="setTitle"><title>Hello world!</title></action>
</reference>

Пример для странички Контакта, contacts.xml.

<contacts_index_index translate="label">
    <label>Contact Us Form</label>
    <reference name="root">
        <action method="setTemplate">
            <template>page/2columns-left.phtml</template>
        </action>
    </reference>
    <reference name="head">
        <action method="setTitle"><title>Hello world!</title></action>
    </reference>
    <reference name="content">
        <block type="core/template" name="contactForm" template="contacts/form.phtml"/>
    </reference>
</contacts_index_index>