Home › Forums › Basel support forum › show product rating in the shop/category page › Reply To: show product rating in the shop/category page
February 9, 2018 at 3:10 pm
#38672
esthetis
Participant
Try to add the following code snippet to the functions.php file in the child theme.
remove_action(‘woocommerce_after_shop_loop_item_title’,’woocommerce_template_loop_rating’,5);
add_action(‘woocommerce_shop_loop_item_title’,’woocommerce_template_loop_rating’,5);
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.product.basel-hover-alt .star-rating {
display: block;
}
Regards