I call a category with a menu item using my own view.xsl template > my.xsl
On the first page all is fine, vcards are shown.
The problem:
As soon as I click to the next page, the default view.xsl template will be used, my.xsl should be shown!
I did not change the "navigation.xsl".
Additionally I have a my own menu module on top. on page two or more it´s gone.
Any idea?
This is my.xsl for the category view:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns
hp="http://php.net/xsl" exclude-result-prefixes="php">
<xsl
utput method="xml" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" encoding="UTF-8" />
<xsl:include href="/../common/navigation.xsl" />
<xsl:include href="/../common/topmenu.xsl" />
<xsl:include href="/../common/alphamenu.xsl" />
<xsl:include href="/../common/entries.xsl" />
<xsl:include href="/../common/categories.xsl" />
<xsl:include href="/../common/messages.xsl" />
<xsl:template match="/category">
<xsl:variable name="rssUrlSection">{"sid":"<xsl:value-of select="section/@id" />","sptpl":"feeds.rss","out":"raw"}
</xsl:variable>
<xsl:variable name="sectionName">
<xsl:value-of select="section" />
</xsl:variable>
<xsl:value-of select="php:function( 'SobiPro::AlternateLink', $rssUrlSection, 'application/atom+xml', $sectionName )" />
<xsl:variable name="rssUrl">{"sid":"<xsl:value-of select="id" />","sptpl":"feeds.rss","out":"raw"}
</xsl:variable>
<xsl:variable name="categoryName">
<xsl:value-of select="name" />
</xsl:variable>
<xsl:value-of select="php:function( 'SobiPro::AlternateLink', $rssUrl, 'application/atom+xml', $categoryName )" />
<!--<xsl:call-template name="topMenu">
<xsl:with-param name="searchbox">true</xsl:with-param>
</xsl:call-template>-->
<xsl:apply-templates select="messages" />
<xsl:apply-templates select="alphaMenu" />
<xsl:value-of select="description" disable-output-escaping="yes" />
<div class="cat_rest"><xsl:text>Aussenrequiste | </xsl:text>
<xsl:value-of select="//category/name"/>
</div>
<xsl:call-template name="entriesLoop" />
<xsl:apply-templates select="navigation" />
</xsl:template>
</xsl:stylesheet>