I would like to display "review" when there is only a single review for a product instead of "reviews". For instance, I want it to say "1 review" instead of "1 reviews".
Is there a conditional statement I can add that will do this if there is only one review?
Here is my current code from my CTGY layout page:
Site link: http://www.speakerrepair.com/mm5/merchant.mvc
Thanks for any help. :)
Eric
Is there a conditional statement I can add that will do this if there is only one review?
Here is my current code from my CTGY layout page:
Code:
<mvt:item name="productreviews" PARAM="stars" />
<br>
Rating:
<mvt:if expr="g.ReviewStars">
&mvt:global:ReviewStars;
<mvt:else>
<i>Not rated yet.</i>
</mvt:if>
<mvt:if expr="g.Total_Reviews">
<small>(&mvt:global:Total_Reviews; reviews)</small>
</mvt:if>
Thanks for any help. :)
Eric
Comment