Results 1 to 2 of 2

Thread: Show category title on category page

  1. #1
    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
    Join Date
    Jul 2011
    Posts
    90

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •