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
I have an event handler to the media section.
I need perform some things on every page that contains links to this media node id.
How do I get the document list?
assuming that all the links to this document are via the same property alias, e.g MainImage, then try
<xsl:variable name="imageId" select="12345"/><xsl:for-each select="$currentPage/ancestor-or-self::node//node[data[@alias='MainImage']=$imageId]"> <xsl:value-of select="concat(@id, ' - ', @nodeName)"/></xsl:for-each>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Get the list of pages containing a link to specific nodeID
I have an event handler to the media section.
I need perform some things on every page that contains links to this media node id.
How do I get the document list?
assuming that all the links to this document are via the same property alias, e.g MainImage, then try
is working on a reply...