Connect Branded Returns Page to Magento 1 Store
Magento is an open-source eCommerce platform. Link branded returns page to your store and deliver seamless returns experience. A few simple steps and you’ll be all set to delight your customers.
Go to Magento > CMS > Pages > Add new page > Enter page title > Specify URL key (e.g. Returns page) > Save
Open app\design\frontend\default\themeXXX\layout\customer.xml file
Find the below-mentioned code in Default Layout section
Replace with the following code snippet
Note: Replace “new” with your Returns Page. Specify the label and title.
Save changes and refresh your site to verify changes
Suppose you do not have a "top.links" reference, add it as follows.
Go to Magento > CMS > Pages > Select the return policy page > Content section
Select the required text and link branded returns page > Save changes
🔧 Link returns page to the main navigation
Go to Magento > CMS > Pages > Add new page > Enter page title > Specify URL key (e.g. Returns page) > Save
Open app\design\frontend\default\themeXXX\layout\customer.xml file
Find the below-mentioned code in Default Layout section
<reference name="top.links">
Replace with the following code snippet
<action method="addLink" translate="label title"><label>New</label><url>new<br>
</url><title>New</title><prepare/><urlParams/><position>60</position></action>
Note: Replace “new” with your Returns Page. Specify the label and title.
Save changes and refresh your site to verify changes
Suppose you do not have a "top.links" reference, add it as follows.
<reference name="top.links"><br>
<action method="addLink" translate="label title"><label>New</label><url>new<br>
</url><title>New</title><prepare/><urlParams/><position>60</position></action><br>
</reference>
💻 Add a hyperlink to your return policy content
Go to Magento > CMS > Pages > Select the return policy page > Content section
Select the required text and link branded returns page > Save changes
Updated on: 01/06/2022
Thank you!