Number of reviews

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Jun 17, 2014 2:51 pm
Reply with quote
Report this post
Hi, is there a way how to set number of reviews in product details page? [see attachment]

numbers_of_review.jpg


Thank you
User avatar
Fresh Boarder

GK User
Tue Jun 17, 2014 4:41 pm
Reply with quote
Report this post
Hello,

Please open file html/com_virtuemart/productdetails/default.php

and please change the following fragment:

Code: Select all
<?php if($this->allowRating || $this->showReview) : ?>
<li data-toggle="customer-reviews"><?php echo JText::_('COM_VIRTUEMART_REVIEWS') ?></li>
<?php endif; ?>


to:

Code: Select all
<?php if($this->allowRating || $this->showReview) : ?>
<li data-toggle="customer-reviews"><?php echo JText::_('COM_VIRTUEMART_REVIEWS') ?><?php echo ' (' . count($this->rating_reviews) . ')'; ?></li>
<?php endif; ?>
User avatar
Administrator

GK User
Thu Jun 19, 2014 11:05 am
Reply with quote
Report this post
Perfect! Thank you! :)
User avatar
Fresh Boarder


cron