On Friday 11 February 2011 13:56:13 Lwam Berhane wrote:
> I am using breadcrumbs in my HTML output. It works but on my titlepage I
> don't want to have a breadcrumb. How can I turn it off??
Try changing
<xsl:template name="user.header.content">
<xsl:call-template name="breadcrumbs"/>
</xsl:template>
to
<xsl:template name="user.header.content">
<xsl:if test="boolean(../..)">
<xsl:call-template name="breadcrumbs"/>
</xsl:if>
</xsl:template>
HTH,
Paul.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]