評価が重複しているのはなぜですか?Magentoで自分の評価が重複する原因は何ですか?
は、以下のように私のview.phtml外観です。私は、Magentoのを使用しています「版1.6.0.0」
<?php if($this->getRating() && $this->getRating()->getSize()): ?>
<h3><?php echo $this->__('Product Rating:') ?></h3>
<table class="ratings-table">
<?php foreach ($this->getRating() as $_rating): ?>
<?php if($_rating->getPercent()): ?>
<tr>
<th><?php echo $this->__($this->escapeHtml($_rating->getRatingCode())) ?></th>
<td>
<div class="rating-box">
<div class="rating" style="width:<?php echo ceil($_rating->getPercent()) ?>%;"></div>
</div>
</td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</table>
</dl>
<?php endif; ?>
ご回答いただきありがとうございます。しかし、私はそれは何も重複した構成を持っていないと思うhttp://i42.tinypic.com/29y03ue.jpg – Pennf0lio