Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: Adding 'misc text' table to display on product page

  1. #1
    kevin@mkbtechnology.com is offline Junior Member
    Join Date
    Jan 2012
    Posts
    8

    Default Adding 'misc text' table to display on product page

    How would I go about presenting the data in the misc text table to display on our product page. We are using the product.SimpleProduct.xml.config XML. I'm using this field for product condition, so I would want it to display Condition: %data% under the description. Any help would be greatly appreciated! thanks

  2. #2
    kevin@mkbtechnology.com is offline Junior Member
    Join Date
    Jan 2012
    Posts
    8

    Default

    OK, problem solved. I only had to add a couple lines in my XML for simpleproducts:

    <xslaram name="pMiscText" select="aspdnsf:GetMLValue(MiscText)"></xslaram>

    And then to display it :

    <div>Condition: <xsl:value-of select="$pMiscText" disable-output-escaping="yes"/></div>