zencart商品页面显示评论等级

2012-06-21 14:49 来源:www.chinab4c.com 作者:zencart专家

     zencart商品页面显示评论等级,这个功能在ecshop二次开发里面常常遇到,这个是非常简单的。对ecshop来说。但是我们在zencart里面就非常麻烦了。我们必须通过zencart二次开发,才能实现这个功能。

    首先我们知道zencart商品页面的商品评论,是在zen_reviews表里的,而zencart评论内容是存储在zen_reviews_description里面的。这样的设计方案也算是十分完美的。那么我们详细按谈如何对zencart商品页面显示评论等级调用。

    1:includes/modules/pages/product_info/main_templates_vars.php调用该代码。

     $comment = $db->Execute("select IFNULL(AVG(reviews_rating), 0) AS rank from ".ZEN_REVIEWS." where products_id = '".(int)$_GET['products_id']."'");
      $rank    = ceil($comment->fields['rank']) == 0 ? 5 : ceil($comment->fields['rank']);

    2:在zen cart模板中调用该代码,显示zencart商品的评论级别.includes/templates/template_default/templates/tpl_products_info_display.php增加以下代码。

     <div class="rating"><?php echo zen_image(DIR_WS_TEMPLATE_IMAGES . 'stars_' . $reviews['reviewsRating'] . '.gif', sprintf(TEXT_OF_5_STARS, $reviews['reviewsRating'])), sprintf(TEXT_OF_5_STARS, $reviews['reviewsRating']); ?></div>

   来源:http://www.chinab4c.com