Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The answer to your question is ultimately, it depends. The links in that navigation are added via different layout XML files. Here's the code that first defines the block in <code>layout/customer.xml</code>. Notice that it also defines some links to add to the menu:</p> <pre><code>&lt;block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml"&gt; &lt;action method="addLink" translate="label" module="customer"&gt;&lt;name&gt;account&lt;/name&gt;&lt;path&gt;customer/account/&lt;/path&gt;&lt;label&gt;Account Dashboard&lt;/label&gt;&lt;/action&gt; &lt;action method="addLink" translate="label" module="customer"&gt;&lt;name&gt;account_edit&lt;/name&gt;&lt;path&gt;customer/account/edit/&lt;/path&gt;&lt;label&gt;Account Information&lt;/label&gt;&lt;/action&gt; &lt;action method="addLink" translate="label" module="customer"&gt;&lt;name&gt;address_book&lt;/name&gt;&lt;path&gt;customer/address/&lt;/path&gt;&lt;label&gt;Address Book&lt;/label&gt;&lt;/action&gt; &lt;/block&gt; </code></pre> <p>Other menu items are defined in other layout files. For example, the Reviews module uses <code>layout/review.xml</code> to define its layout, and contains the following:</p> <pre><code>&lt;customer_account&gt; &lt;!-- Mage_Review --&gt; &lt;reference name="customer_account_navigation"&gt; &lt;action method="addLink" translate="label" module="review"&gt;&lt;name&gt;reviews&lt;/name&gt;&lt;path&gt;review/customer&lt;/path&gt;&lt;label&gt;My Product Reviews&lt;/label&gt;&lt;/action&gt; &lt;/reference&gt; &lt;/customer_account&gt; </code></pre> <p>To remove this link, just comment out or remove the <code>&lt;action method=...&gt;</code> tag and the menu item will disappear. If you want to find all menu items at once, use your favorite file search and find any instances of <code>name="customer_account_navigation"</code>, which is the handle that Magento uses for that navigation block.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload