pixeltocode
pixeltocode

Reputation: 5308

Magento - page title on contact page

how can i change the page title <title> of Magento's default contact page?

thanks

Upvotes: 0

Views: 5443

Answers (3)

Praful Rajput
Praful Rajput

Reputation: 355

<reference name="head">
     <action method="setTitle" translate="title" module="contacts">
          <title>Online Shopping, Shop Mobile online</title>
     </action>
</reference>

Upvotes: 3

Marek Dajnowski
Marek Dajnowski

Reputation: 23

Open or find file like: app/design/frontend/base/default/layout/contacts.xml

Somewhere between contacts_index_index tags add:

    <reference name="head">

        <action method="setTitle"><title>Contact Us - Your Store Name</title></action>

    </reference>

Best, Marek

Upvotes: 1

Chris Norton
Chris Norton

Reputation: 807

You can change the title by overriding the "contacts.xml" layout file in your design. Adjust the following line to suit:

<action method="setHeaderTitle" translate="title" module="contacts"><title>Contact Us</title></action>

Upvotes: 2

Related Questions