Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Remove Top Menu Tabs

  1. #1
    dapco is offline Junior Member
    Join Date
    May 2010
    Posts
    1

    Default Remove Top Menu Tabs

    I am trying to remove both the Categories and Manufacturers tabs from the top menu and have been unable to do so.

    Can someone let me know what has to be done to accomplish this?

    I was able to remove the entries from the side menus.

    Thanks

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    If you're on v8.x-below, you can do so by actually removing it in menuData.xml located inside the {root}/skins/skin_# folder. Otherwise, go to {root}/XMLPackages/page.menu.xml, you can remove it by simply commenting out the lines:

    Code:
    <siteMapNode title="(!menu.Categories!)" type="category" />
     <siteMapNode title="(!menu.Manufacturers!)" url="~/manufacturers.aspx" type="manufacturer" />

  3. #3
    data77 is offline Member
    Join Date
    Oct 2010
    Posts
    75

    Default modifying menu

    I have the v9 version and want to modify the menu on top
    Exemple : Want to insert About after Home
    <siteMapNode title="(!menu.Home!)" url="~/default.aspx">
    <siteMapNode title="(!menu.About!)" url="~/home.aspx"/>

    At runtime i see (!menu.About!) instead of About
    How to fix this ?