Hi,
I was wondering how I can display the Variant Part Number instead of the SKU on the product pages. I have selected the template: product.VariantsInRightBar.xml.config
There is a code in that XML file which pulls the Variant name and other information as follows:
Code:
<xsl:param name="vName" select="aspdnsf:GetMLValue(VariantName)"/>
Can a similar method be used to pull the variant manufacturer part number field?
The following returns the Parent Product's Part Number, not the variant's
Code:
<xsl:param name="vPN" select="aspdnsf:GetMLValue(ManufacturerPartNumber)"/>
I have also tried the following two but they do not return anything:
Code:
<xsl:param name="vPN" select="aspdnsf:GetMLValue(VariantManufacturerPartNumber)"/>
and
Code:
<xsl:param name="vPN" select="aspdnsf:GetMLValue(VariantPartNumber)"/>
Thanks for the help!