Is there any option in ASPDNSF to add product reviews and show them on the product listing pages?
Is there any option in ASPDNSF to add product reviews and show them on the product listing pages?
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![]()