Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/themes/vrm/woocommerce/single-product/ |
Upload File : |
<?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 999 */ defined( 'ABSPATH' ) || exit; /*----------------------------------------------------------------------*/ /* [ Custom Theme output ] /*----------------------------------------------------------------------*/ if ( true === wpex_has_woo_mods() ) : global $product; if ( ! wc_review_ratings_enabled() || ! get_theme_mod( 'woo_show_post_rating', true ) ) { return; } $rating_count = $product->get_rating_count(); $review_count = $product->get_review_count(); $average = $product->get_average_rating(); $average_display = str_replace( '.00', '', $average ); $average_display = ( strpos( $average_display, '.' ) !== false ) ? $average_display + 0 : floatval( $average_display ) . '.0'; $comments_open = comments_open(); ?> <div class="woocommerce-product-rating"> <?php if ( $average ) { echo wc_get_rating_html( $average, $rating_count ); } elseif ( $comments_open ) { echo '<div class="star-rating">' . wc_get_star_rating_html( $average ) . '</div>'; // show 0 ratings } ?> <?php if ( $comments_open ) : ?> <?php if ( $average ) { ?> <span class="wpex-avg-rating"><?php echo esc_html( $average_display ); ?></span> (<a href="#reviews" class="woocommerce-review-link" rel="nofollow"><?php printf( _n( '%s review', '%s reviews', $review_count, 'total' ), '<span class="wpex-count">' . esc_html( $review_count ) . '</span>' ); ?></a>) <?php } else { ?> (<a href="#reviews" class="woocommerce-review-link" rel="nofollow"><?php esc_html_e( 'be the first to review', 'total' ); ?></a>) <?php } ?> <?php endif ?> </div> <?php /*----------------------------------------------------------------------*/ /* [ Default output ] /*----------------------------------------------------------------------*/ else : global $product; if ( ! wc_review_ratings_enabled() ) { 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"> <?php echo wc_get_rating_html( $average, $rating_count ); // WPCS: XSS ok. ?> <?php if ( comments_open() ) : ?> <?php //phpcs:disable ?> <a href="#reviews" class="woocommerce-review-link" rel="nofollow">(<?php printf( _n( '%s customer review', '%s customer reviews', $review_count, 'woocommerce' ), '<span class="count">' . esc_html( $review_count ) . '</span>' ); ?>)</a> <?php // phpcs:enable ?> <?php endif ?> </div> <?php endif; ?> <?php endif; ?>