Magento – How to add/ change meta tags specific to the Contacts page

magento-1.9meta-tags

I have a shopping store (www.goorganics.us) in Magento using the "Magento ver. 1.7.0.2". Please guide me how to update the Title and other Meta Tags (for SEO) of my Contacts page?

Best Answer

The contact page comes from the module Mage_Contats.
To change the meta data you need to add this in local.xml layout file of your theme or inside the contacts.xml in the same theme.

<contacts_index_index>
    <reference name="head">
       <action method="setTitle" translate="title" module="contacts"><title>YOUR META TITLE HERE</title></action>
       <action method="setDescription" translate="description" module="contacts"><description>YOUR META DESCRIPTION HERE</description></action>
       <action method="setKeywords" translate="keywords" module="contacts"><keywords>YOUR META KEYWORDS HERE</keywords></action>
    </reference>
</contacts_index_index>
Related Topic