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: How to add reviews?

  1. #1
    chrisjob012 is offline Junior Member
    Join Date
    Apr 2009
    Posts
    14

    Default How to add reviews?

    Is there any option in ASPDNSF to add product reviews and show them on the product listing pages?

  2. #2
    MelanieA is offline Junior Member
    Join Date
    Sep 2008
    Posts
    313

    Default

    Please refer to this manual to enable your product reviews or ratings. However this is displayed on your product page and not on the product listing which is in your category.

    If you wish to have a product review or ratings on your products listings you have to add these additional lines on your entity xml package (ex. : entity.grid.xml.config)

    <tr>
    <td height="50" align="center" valign="top">
    <xsl:if test="aspdnsf:AppConfigBool('RatingsEnabled') = 'true'">
    <xsl:value-of select="aspdnsf:ProductRatings(ProductID, 0, 0, 0, 1)" disable-output-escaping="yes"/>
    </xsl:if>
    </td>
    </tr>


    Check if this works for you