Magento: How to change or reorder top links?
In the default magento installation, the top links are as follows:
My Account | My Wishlist | My Cart | Checkout | Log In
In order to change or reorder them you have to do some changes in layout files (xml files).
You can do changes for My Account, Log Out, and Log In from customer.xml file. You can change the title and position of these menu from there.
You can change the ordering of My Cart and Checkout from checkout.xml
See for the following code in checkout.xml
<action method="addCartLink"></action> <action method="addCheckoutLink"></action>
For My Wishlist, open wishlist.xml and search for the following code:
<action method="addWishlistLink"></action>
Related posts:
- Magento: Set/Change page layout, title tag, meta keywords and description
- Magento: How to change default page layout?
- Magento: How to change Currency symbol by Model Override ?
- Magento: How to change order status programmatically?
- Magento: How to change Currency symbol ?
- Magento: How to change the ‘Default welcome msg!’
- Magento: How to change Admin URL Path?
- Magento: Payment method not displayed in Multiple Shipping Adresses Checkout
- jQuery: Grey out background and preview image as popup
- Magento: PayPal Website Payments Standard not displayed
