Tagged: woocommerce
Hey There,
i am Using Enfold in combination with Woocommerce. I got 2 Reviews for my Product but the the way they are shown is not the way i want it.
The Stars from the Review only showing if the Cursor is on the Product. Is there a way that the Reviews are always showing? for Example under the Product?
best Regards
XLleads
Hey XLeads,
Please try the following in Quick CSS under Enfold->General Styling:
.thumbnail_container .rating_container {
opacity: 1;
}
Best regards,
Rikard
Thank you,
Now its always Showing,is it possible to place the Stars under the Product ?
Hi,
Thank you for the update.
Would you like to adjust the position of the stars inside the review container? Please try this code in the Quick CSS field.
div .star-rating, div #reviews #comments ol.commentlist li .comment-text .star-rating {
top: 10px;
position: relative;
}
Adjust the top position as you wish.
Best regards,
Ismael
Hi,
Would you like to place the star rating below the title of the products in the shop page? The following thread might help.
The modifications there creates a shortcode for the star rating but you should be able to modify it so that the stars display right after the product title. You may need to use the woocommerce_after_shop_loop_item_title hook in order to do so.
// http://hookr.io/actions/woocommerce_after_shop_loop_item_title/
Best regards,
Ismael