Hmmm, this is not working for me. I do not have SEF turned on, so my code is:
<xsl:copy-of select="misc" />
<br /><a href="index.php?option=com_comprofiler&Itemid={@userid}">User Profile</a>
I get the following error:
XML Parsing Error: not well-formed Location:
www.site.com/components/com_google_maps/minipage.xsl
Line Number 71, Column 55:
User Profile
^
I also tried this format, found in another thread, but I still got a parsing error:
<xsl:copy-of select="misc" />
<br /><a><xsl:attribute name="href">index.php?option=com_comprofiler&Itemid<xsl:value-of select="@userid"/></xsl:attribute>Go to profile</a>
I tried this with and without the @sign, without and without curly parentheses, and I tried to put userid into a standard XML field, and I tried putting it in the main body of the code instead of in "misc," but nothing worked, so I am officially stuck. If anyone figures this out, please document your code for me.