magento: add register link at top links
I want to change default “Log In” to ” Log In or Register”, so how to add register link at top links for magento site?
It’s easy.
At app/design/frontend/default/your-template/layout, find customer.xml, and, find this:
<reference name=”top.links”>
<action method=”addLink” translate=”label title” module=”customer”><label>Log In</label><url helper=”customer/getLoginUrl”/><title>Log In </title><prepare/><urlParams/><position>100</position></action>
</reference>
and just replace the code to:
<reference name=”top.links”>
<action method=”addLink” translate=”label title” module=”customer”><label>Log In or Register</label><url helper=”customer/getLoginUrl”/><title>Log In or Register</title><prepare/><urlParams/><position>100</position></action>
</reference>
That’s OK.
