Hello everybody!
So before you start posting links to the manual and several threads, I've read ALL of it and tried all of it and I can't get it to work. I have Multistore 9.1.0.1/9.1.0.0 No source code, and the xml package I'm using for my product pages uses the code below for stored procedure:
Code:
exec dbo.aspdnsf_ProductInfo @ProductID, @CustomerLevelID, 0, 0, @affiliateID
My goal in all of this is to get some more tabs on the product page (I know it's not
where I put it because it works with just <xsl:value-of select="ExtensionData" disable-output-escaping="yes"/>).
I've tried the info in the
manual and I'm sure it works, but I'm probably just missing something. It works fine if I want it to return all of what's in extension data, but not if I want to get just one 'node' or whatever.
Maybe I'm not putting
Code:
<xsl:variable name="MyExtensionData" select="ExtensionData"/>
<xsl:variable name="MyNodeInExtensionData" select="string('WeddingDate')"/>
<xsl:variable name="MyValueLocation" select="substring-after($MyExtensionData, concat('<', $MyNodeInExtensionData,'>'))"/>
<xsl:variable name="MyValue" select="substring-before($MyValueLocation, concat('</', $MyNodeInExtensionData, '>'))" />
in the right place? Not sure.
Anyway, this is what I want in ExtensionData...
<ExtensionData>
<Features>This is where Features would go!!!</Features>
<Specifications>This is where Specifications would go!!</Specifications>
<Fits>This is where the Fits section would go!!!</Fits>
<Mounting>This is where Mounting instructions would go!!!</Mounting>
</ExtensionData>
But I've been testing with the code from the manual.
If anyone could shed some light on this, it would be greatly appreciated.
Also, I'm not incredibly familiar with xml or aspdnsf, so a lot of detail is also extremely appreciated!
Thanks,
Kayla