Remove star rating from product loop
-
Hi!
How can i remove rating from product archive page?
This hook make no effect
remove_action (‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_rating’, 5 );
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.product-grid-item .star-rating {
display:none;
}
Best Regards
I don’t want to use css for it.
Do you have hook to remove this function?
And why standard woocommerce hook make no effect?
Hello,
We have tested this code and it works properly:
remove_action ('woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );
Please add to the functions.php of the child theme.
Best Regards