Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
indutri
/
woocommerce
/
loop
:
rating.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Loop Rating * * @author WooThemes * @package WooCommerce/Templates * @version 3.6.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $product; if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' ) return; ?> <?php if ( $rating_html = $product->get_rating_html() ) : ?> <?php echo wp_kses($rating_html, true); ?> <?php else: ?> <div class="star-rating"></div> <?php endif; ?>