I have been trying to get this template working. Any suggestions? It picks up the directors jpg and the actors jpg as long as there is only one actor name and one director name. The six actor image frames then fill up with the same jpg. If I add another actor separated by "/" then it doesn't work (I set the max actors in the xml template:
<Actors Separator=", " MaximumValues="6" ImagesFolder="" DefaultImage="" />
. I've had a look at the xslt template and the problem most likely is in this area:
<xsl:variable name="lista1" select="//tokens/token[@name='%ACTORS%']"/>
<xsl:variable name="actor1" select="substring-before($lista1, '/')" />
<xsl:variable name="resto1" select="substring-after($lista1, '/')" />
<xsl:variable name="lista2" select="$resto1"/> ......etc.
If you can shed any light on this, it would be appreciated
