Reviews and rating are mostly used for user interactive, most of the times very useful while choosing a product, our first impression is goes on the rating of an item and subsequently the reviews.
Some times it goes terrific if some worst or unhappy customer try to rate bad (we have control over the review in admin panel) anyway this may lost product sales.
To turn off or remove the reviews in Single Product page simply add the following code in themes function.php
Finlay if you decide it no longer need in products archive page just add the following css code in style.css.
Some times it goes terrific if some worst or unhappy customer try to rate bad (we have control over the review in admin panel) anyway this may lost product sales.
To turn off or remove the reviews in Single Product page simply add the following code in themes function.php
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_reviews_tab', 30 ); remove_action( 'woocommerce_product_tab_panels', 'woocommerce_product_reviews_panel', 30 );
that's it.Finlay if you decide it no longer need in products archive page just add the following css code in style.css.
.star-rating {
display: none !important;
}
Labels:
product review,
woocomemrce tuts
Previous Article

Responses
1 Respones to "How to remove product review stars from woocommerce products"
It works
3 June 2019 at 21:20
Post a Comment