Answer the question
In order to leave comments, you need to log in
How to display Woocommerce products with a rating?
Please tell me - I installed the YITH WooCommerce Advanced Reviews plugin
In the product card, everything normally displays the rating in stars, but when displayed on the main page through new Query, it displays "5.00 out of 5 instead of stars"
<div class="owl-carousel favorite_slider">
<?php $favorite_product = new WP_Query( array(
'post_type' => 'product',
'post_status' => 'publish',
'posts_per_page' => 12,
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
),
))); ?>
<?php while ($favorite_product->have_posts()) : $favorite_product->the_post() ?>
<div class="item">
<?php wc_get_template_part( 'content', 'product-main' ); ?>
</div>
<?php endwhile; ?>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question