Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
I'm trying to get use a macro container to display a link to a PDF that the user picks with the macro with a mediaCurrent type parameter. If i use:
<xsl:value-of select="$pdflink" />
then i get a weird output like this:
/media/264/sew_wantedposter2011.pdfpdf123766
How can i use this to populate the URL so i can create a link like this?
<a href="{$solution}" class = "seLinkPDF" >MY LINK</a>
Thanks in advance for any help with this!!
Nick
For anyone else this wasn't too tricky!
<xsl:variable name="pdfId" select="$pdflink/File/@id" /> <xsl:if test="$pdfId> 0"> <a href="{umbraco.library:GetMedia($pdfId, 0)/umbracoFile}" class = "seLinkPDF"><p><p><xsl:value-of select="$pdflinktext"/></p></p></a> </xsl:if>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Macro container to enable link to PDF in Media section
Hi
I'm trying to get use a macro container to display a link to a PDF that the user picks with the macro with a mediaCurrent type parameter. If i use:
then i get a weird output like this:
/media/264/sew_wantedposter2011.pdfpdf123766
How can i use this to populate the URL so i can create a link like this?
Thanks in advance for any help with this!!
Nick
For anyone else this wasn't too tricky!
<xsl:variable name="pdfId" select="$pdflink/File/@id" />
<xsl:if test="$pdfId> 0">
<a href="{umbraco.library:GetMedia($pdfId, 0)/umbracoFile}" class = "seLinkPDF"><p><p><xsl:value-of select="$pdflinktext"/></p></p></a>
</xsl:if>
is working on a reply...