Archived topic
How to disable profile logo in reviews section?
9 replies · Started by bluebit on October 25, 2017
For the reviews on the bottom of the page, on the right side there are profile logos next to the stars, how to disable? http://wildlatina.co/product/cindy/
I've got your custom css plugin installed and a code snippets plugin.
Also the large gap of space between the title Reviews and the actual reviews, how to make the gap smaller? Disable/Remove the "4 reviews for Bikini Blanco" line.
Hi there,
Try this CSS:
.comment_container > img {
display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
margin-bottom: 0;
}
.woocommerce-tabs #reviews {
padding-top: 0;
padding-left: 60px;
padding-right: 60px;
}
fixed it somewhat, this is what it looks like now http://wildlatina.co/product/cindy/
How to disable/remove/hide the "3 reviews for Bikini Blanco" title?
Remove/Hide the white border line thats on each review.
Center the entire reviews section to the middle, seems like its aligned to the right. Maybe padding can fix it.
Try this:
h2.woocommerce-Reviews-title {
display: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
border: none;
margin: 0;
}
Looking great, lastly. How do I make the Reviews title a bigger size? http://wildlatina.co/product/cindy/
Move the part on the bottom that says "Only logged in customers who have purchased this product may leave a review." from left side to center align.
And add padding to the left and right side of the reviews section.
li#tab-title-reviews {
font-size: 20px;
}
p.woocommerce-verification-required {
text-align: center;
}
For the padding I've adjusted the code above: https://generatepress.com/forums/topic/how-to-disable-profile-logo-in-reviews-section/#post-410411
How do I put an underline for the "Reviews" title? http://wildlatina.co/product/cindy/
And remove/hide the line "Uploaded image(s):" inside the reviews section.
.reviews_tab {
text-decoration: underline;
}
p.iv-comment-image-text {
display: none;
}
that worked!!!! i actually removed the underline, didn't look to pretty.
How to change the text size and color of the reviewers text from gray to white for example this "Tim Jae (verified owner) – Octubre 5, 2017"
Change the reviews order from newest to oldest, its currently oldest to newest.
This CSS should do:
.woocommerce #reviews #comments ol.commentlist li .meta {
color: #ffffff;
}
You'd have to check with WooCommerce for that last question. All of the above should be answered by them by the way :)