I install the 4.6 Alpha ( code name juno) and after that install the Runway bussines site but when I click on the company blog there is an error :Error parsing XSLT file: \xslt\RunwayBlogListPosts.xslt
I try to comment a part of the RunwayBlogListPosts.xslt and it only work when i comment the following code lines
the tag may does not work as expected
I install the 4.6 Alpha ( code name juno) and after that install the Runway bussines site but when I click on the company blog there is an error :Error parsing XSLT file: \xslt\RunwayBlogListPosts.xslt
I try to comment a part of the RunwayBlogListPosts.xslt and it only work when i comment the following code lines
<span class="tag-links">
<xsl:variable name="tags" select="tagsLib:getTagsFromNode(@id)" />
<xsl:choose>
<xsl:when test="count($tags/tags/tag) = 0">
Not tagged
</xsl:when>
<xsl:otherwise>
Tagged:
<xsl:for-each select="$tags/tags/tag">
<a href="{umbraco.library:NiceUrl($currentPage/ancestor-or-self::RunwayBlog/@id)}?filterby={.}" rel="tag">
<xsl:value-of select="."/>
</a>
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</span>
It look like the tags does not work.
please help me
Thank you for your patience.
is working on a reply...