2013-10-31 16:26:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Single Product Rating
|
|
|
|
*
|
2014-10-16 19:38:04 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 2.2.6
|
2013-10-31 16:26:20 +00:00
|
|
|
*/
|
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2013-10-31 16:26:20 +00:00
|
|
|
|
|
|
|
global $product;
|
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' ) {
|
2013-10-31 16:26:20 +00:00
|
|
|
return;
|
2014-09-22 16:37:57 +00:00
|
|
|
}
|
2013-10-31 16:26:20 +00:00
|
|
|
|
|
|
|
$count = $product->get_rating_count();
|
|
|
|
$average = $product->get_average_rating();
|
|
|
|
|
|
|
|
if ( $count > 0 ) : ?>
|
|
|
|
|
|
|
|
<div class="woocommerce-product-rating" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
|
|
|
<div class="star-rating" title="<?php printf( __( 'Rated %s out of 5', 'woocommerce' ), $average ); ?>">
|
|
|
|
<span style="width:<?php echo ( ( $average / 5 ) * 100 ); ?>%">
|
|
|
|
<strong itemprop="ratingValue" class="rating"><?php echo esc_html( $average ); ?></strong> <?php _e( 'out of 5', 'woocommerce' ); ?>
|
|
|
|
</span>
|
|
|
|
</div>
|
2014-10-16 19:38:04 +00:00
|
|
|
<?php if ( comments_open() ) : ?><a href="#reviews" class="woocommerce-review-link" rel="nofollow">(<?php printf( _n( '%s customer review', '%s customer reviews', $count, 'woocommerce' ), '<span itemprop="ratingCount" class="count">' . $count . '</span>' ); ?>)</a><?php endif ?>
|
2013-10-31 16:26:20 +00:00
|
|
|
</div>
|
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
<?php endif; ?>
|