stars in the product list

26.03.2022 10:40
#1
spike77
Joomshopping forum user no avatar
Name: Manfred
30.04.2015
Posts: 706
Quote
stars in the product list

Stars in the product list should only be displayed if there is at least one rating.

that was my solution in Product.php But this doesn't work:

<?php if ($this->allow_review){?>
<?php if (strlen($curr->review_plus) > 1) { ?>
<div class="review_mark">
<?php print showMarkStar($product->average_rating);?>
</div>
<?php }?>

<?php }?>
stars in the product list

 
26.03.2022 11:34
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25919
Quote
Aw: stars in the product list

<?php if ($product->average_rating > 0) {?>
<?php if (!$this->config->hide_product_rating){?>
<div class="review_mark">
<?php print showMarkStar($product->average_rating);?>
</div>
<?php }?>
<?php }?>

 
26.03.2022 11:41
#3
spike77
Joomshopping forum user no avatar
Name: Manfred
30.04.2015
Posts: 706
Quote
Aw: stars in the product list

Phantastic, works great!! Thank you

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.