显示星级评级旁边的woocommerce评论数

时间:2017-09-23 19:43:36

标签: php wordpress woocommerce

没有评论的Woocommerce星级评分。

enter image description here

修改后的Woocommerce星级评分,点评次数。

enter image description here

2 个答案:

答案 0 :(得分:4)

Woocommerce已在单个商品页面中显示星级评级旁边的评论数量。但在商店和档案页面上,它只显示星级。按照以下步骤即使在商店和档案页面上也会显示星级评分计数。

步骤1)在主题的根目录中创建一个新文件夹,并将其命名为“woocommerce”

步骤2)在新创建的“woocommerce”文件夹中创建一个新文件夹,并将其命名为“loop”

步骤3)将'rating.php'文件添加到新创建的'loop'文件夹

现在您的目录看起来像这样

  

/的public_html /可湿性粉剂内容/主题/ YOUR-主题/ woocommerce /环

将以下代码添加到新创建的“rating.php”中,并根据需要进行自定义。

<?php
/**
 * Loop Rating
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/loop/rating.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see         https://docs.woocommerce.com/document/template-structure/
 * @author      WooThemes
 * @package     WooCommerce/Templates
 * @version     3.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

global $product;

if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' ) {
    return;
}

$rating_count = $product->get_rating_count();
$review_count = $product->get_review_count();
$average      = $product->get_average_rating();

if ( $rating_count >= 0 ) : ?>

            <?php echo wc_get_rating_html($average, $rating_count); ?>
        <?php if ( comments_open() ): ?><a href="<?php echo get_permalink() ?>#reviews" class="woocommerce-review-link" rel="nofollow">(<?php printf( _n( '%s',$review_count,'woocommerce' ), '<span class="count">' . esc_html( $review_count ) . '</span>' ); ?>)</a><?php endif ?>


<?php endif; ?>

如果这不起作用

在'woocommerce'文件夹中添加'templates'文件夹,然后在'templates'文件夹中添加'loop'文件夹。

现在目录看起来像这样

  

/的public_html /可湿性粉剂内容/主题/ YOUR-主题/ woocommerce /模板/环

答案 1 :(得分:-1)

理论上这将是完美的,但我认为说明缺少一个步骤来调用评论计数,因为我尝试了两种方法,但没有显示评论计数只显示星星

将循环文件夹移动到 woocommerce 活动主题似乎已经解决了计数问题,但我希望它靠近星星而不是它下面。我该如何解决?

see image attached