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

Thread: Show category title on category page

  1. #1
    bpo is offline Junior Member
    Join Date
    Jun 2007
    Posts
    24

    Default Show category title on category page

    ok, I give up. How would I show the category title above the category description. using entity.grid.xml ? Multi- 9.3

    Thanks!

  2. #2
    medsupply is offline Senior Member
    Join Date
    Jul 2011
    Posts
    99

    Default

    After this line at top of xml package:

    <xslutput method="html" omit-xml-declaration="yes" />

    write:

    <xslaram name="CategoryName">
    <xsl:value-of select="/root/EntityHelpers/*[name()=$EntityName]/descendant::Entity[EntityID=$EntityID]/Name" />
    </xslaram>

    Right after

    <xsl:template match="/">

    write:

    <h1 class="CategoryHeader"><xsl:value-of select="$CategoryName"/></h1>

    Hope it helps