Remove navigation links from My Account

后端 未结 11 735
挽巷
挽巷 2020-12-25 08:22

I am running Mage 1.5.0.1 and I am trying to remove the navigation links from the My Account section.

My local.xml has the following which works fine:



        
11条回答
  •  Happy的楠姐
    2020-12-25 09:11

    My apperoach is to bring power of css and avoid hevy code modifications.

    E.G.

    /* CUSTOMER ACCOUNT LEFT NAV DISABLER */
    .block-content li:nth-child(4),
    .block-content li:nth-child(5),
    .block-content li:nth-child(6),
    .block-content li:nth-child(8){display: none;}
    

    Obviously change selectors to your themes customer navigation li, and use li:nth-child() sudo with number between parenthesis which you want to remove. Use comments in customer.xml as well just in case u don't forget what you did 6 month down the line.

提交回复
热议问题