Magento 2: How to Translate or Change ‘Contact Us’ Page Name in Browser Tab

contact-usmagento2

I tried to find the page in backend from content -> Pages, but the contact us page is not there.

I also find some answers for Magento 1, that you have to edit this file and change the name from here

/app/design/frontend/tm_themes/theme_number/layout/local.xml 

But on Magento 2 I can't find this file.

Best Answer

Place this XML in your theme folder:

your_theme_root/Magento_Contact/layout/contact_index_index.xml

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
        <title>Your new contact page title</title>
    </head>
</page>

Don't forget clear cache. Message me if you will have any issues.

Related Topic