File: /home/dermova/www/india/wp-content/themes/ri-colias/woocommerce/single-product/rating.php
<?php
/**
* Single Product Rating
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.3.2
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product;
if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' ) {
return;
}
$rit_woo_version = rit_get_woo_version_number();
if ( version_compare($rit_woo_version, '2.3', '<') ) {
$rating_count = $product->get_rating_count();
$review_count = $product->get_rating_count();
} else {
$rating_count = $product->get_rating_count();
$review_count = $product->get_review_count();
}
$average = $product->get_average_rating();
if ( $rating_count > 0 ) : ?>
<div class="woocommerce-product-rating" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="star-rating" title="<?php echo esc_attr($average) ?>">
<span style="width:<?php echo ( ( $average / 5 ) * 100 ); ?>%">
<strong itemprop="ratingValue" class="rating"><?php echo esc_html( $average ); ?></strong> <?php printf( esc_html__( 'out of %s5%s', 'woocommerce' ), '', '' ); ?>
</span>
</div>
<meta content="<?php echo esc_attr($rating_count); ?>" itemprop="ratingCount" />
<meta content="5" itemprop="bestRating" />
<?php if ( comments_open() ) : ?>
<div class="review-link"><a href="<?php if (rit_is_ajax()) the_permalink() ?>#reviews" class="woocommerce-review-link" rel="nofollow"><?php printf( _n( '%s customer review', '%s customer reviews', $review_count, 'woocommerce' ), '<span itemprop="reviewCount" class="count">' . $review_count . '</span>' ); ?></a>|<a href="<?php if (rit_is_ajax()) the_permalink() ?>#review_form" class="woocommerce-write-review-link" rel="nofollow"><?php echo esc_html__( 'Add a review', 'woocommerce' ); ?></a></div>
<?php endif; ?>
</div>
<?php else : ?>
<?php if ( comments_open() ) : ?>
<div class="woocommerce-product-rating noreview">
<a href="<?php if (rit_is_ajax()) the_permalink() ?>#review_form" class="woocommerce-write-review-link" rel="nofollow"><?php echo esc_html__( 'Be the first to review', 'woocommerce' ); ?></a>
</div>
<?php endif; ?>
<?php endif; ?>