Jordy S Chemparathy
Jordy S Chemparathy

Reputation: 539

Renaming top links

am new in magento

I am trying to rename the top links

But can not found the corresponding file

Please help me to locate the file

Thanks in advance

Upvotes: 1

Views: 3048

Answers (3)

Pexsol
Pexsol

Reputation: 561

Go to System > Configuration and open Developer Tab. Set "Translate Inline" to Yes.

Once done, you will get a small book icon against the text which you can edit. Do note this doesn't seem to work in Chrome but works fine in Firefox

Upvotes: 1

Palanikumar
Palanikumar

Reputation: 1746

You can edit Top links name from xml file. If you want to edit My Account to Account , just edit in your themes/layout/customer.xml.
Look for reference name="top.links" and edit the label.

Upvotes: 0

Nikhil_K_R
Nikhil_K_R

Reputation: 2373

path:design/frontend/base/default/template/page/html/top.links.phtml

I don't know for which purpose you need this but

<?php
/**
 * @deprecated after 1.4.0.1
 */
?>

it is deprecated.
Instead I think magento uses path:design/frontend/base/default/template/page/template/links.phtml to display toplinks .
Hope this helps you.

Upvotes: 4

Related Questions