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 8 of 8

Thread: Where Top Menu Categories loaded from?

  1. #1
    textbox is offline Junior Member
    Join Date
    Jul 2009
    Posts
    18

    Default Where Top Menu Categories loaded from?

    I have a category which needs to be hidden, but remain active so I can't set it to unpublished. I have modified rev.categories.xml.config so that it doesnt show in the left vertical menu, but it still shows in the top horizontal menu under categories. Is there another xml config file I need to change?

  2. #2
    MelanieA is offline Junior Member
    Join Date
    Sep 2008
    Posts
    313

    Default

    It is your menuData.xml file under your Web\skins\Skin_# folder

  3. #3
    textbox is offline Junior Member
    Join Date
    Jul 2009
    Posts
    18

    Default

    Thanks Melanie, I see the categories string token is in there, but it's the actual drop down list of categories that I am wondering about. Does that get pulled in directly from the database or from an xml config file like the left menu does.

  4. #4
    Dusty is offline Member
    Join Date
    Jun 2009
    Posts
    176

    Default

    The data for the DropDown menus are generated indirectly from the database. The menus are actually bound to a SiteMapDataSource (of which our site maps are database generated).

    Dusty
    ASPDotNetStorefront Staff

  5. #5
    storedeveloper is offline Member
    Join Date
    May 2009
    Posts
    77

    Default hi

    hi, Please use EntityMenuList.xslt to reove the category from the category menu.
    there you can easily remove any category which you dont want to show in category list.

    Replace this code in EntityMenuList withi your category id

    <xsl:template match="Entity">
    <xslaram name="ParentEntityID"><xsl:value-of select="ParentEntityID"/></xslaram>
    <xslaram name="prefix"/>
    <xslaram name="eName">

    <xsl:if test="EntityID!=1">
    <xsl:choose>
    <xsl:when test="count(Name/ml/locale[@name=$custlocale])!=0">
    <xsl:value-of select="Name/ml/locale[@name=$custlocale]"/>
    </xsl:when>
    <xsl:when test="count(Name/ml/locale[@name=$deflocale])!=0">
    <xsl:value-of select="Name/ml/locale[@name=$deflocale]"/>
    </xsl:when>
    <xsl:when test="count(Name/ml)=0">
    <xsl:value-of select="Name"/>
    </xsl:when>
    </xsl:choose>
    </xsl:if>
    </xslaram>

    Where 1 is your CategoryID which you dont want to show.

    Thanks

  6. #6
    storedeveloper is offline Member
    Join Date
    May 2009
    Posts
    77

    Default hi

    hi textbox,

    Can you please let me know if it is working 4 you?

    Thanks

  7. #7
    philbonsai is offline Junior Member
    Join Date
    Nov 2010
    Posts
    5

    Default similar issue

    Hi I've tried to remove your account order history etc from the asp:menu by removing them from the App_Template_/Skin_1/menuData.xml and deleting each item I did not want... to no avail.

    My colleague then went to xmlPackages/page.menu.xml.config and was able to remove them successfully. I don't know if this is correct but wanted to share with the forum how we are able to accomplish this

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

    Default

    menudata.xml is not used anymore if you're on v9, check out {root}/XMLPackages/page.menu.xml.config file instead and comment out:

    Code:
    <siteMapNode title="(!menu.YourAccount!)" url="~/account.aspx" />