I would like to add the "logout" link to the Magento store that I am developing.
On the "My Account" page, the left side panel under all the links (last link below):
- User account
- Account Information
- The address book
- Etc.
How to add a link below?
I think I should add a line of code to customer.xml.
I think this should be in this block:
<block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml"> <action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action> <action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Account Information</label></action> <action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action> </block>
And something on the line:
<action method="addLink" translate="label" module="customer"><name>LOGOUT</name><path>LOGOUT_PATH</path><label>Logout</label></action>
I just donβt know what kind of code should be.
Thank you in advance for your help.
source share