OwlCyberSecurity - MANAGER
Edit File: product-rating.php
<?php /** * Single Product Rating * * This template can be overridden by copying it to yourtheme/woocommerce/single-product/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 2.3.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } 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 ) : ?> <div class="woocommerce-product-rating"> <div class="aux-rating-box aux-star-rating"> <span style="width:<?php echo esc_attr( ( $average / 5 ) * 100 ); ?>%"> <?php /* translators: 1: average rating 2: max rating (i.e. 5) */ printf( __( '%1$s out of %2$s', 'auxin-elements' ), '<strong class="rating">' . esc_html( $average ) . '</strong>', '<span>5</span>' ); ?> <?php /* translators: %s: rating count */ printf( _n( 'based on %s customer rating', 'based on %s customer ratings', $rating_count, 'auxin-elements' ), '<span class="rating">' . esc_html( $rating_count ) . '</span>' ); ?> </span> </div> </div> <?php endif; ?>