This topic has 16 replies, 4 voices, and was last updated 3 years, 3 months ago ago by Olga Barlow
how to remove product review? I hide the review in Tab but it will appear at below column
Hello,
Read this post https://docs.woocommerce.com/document/editing-product-data-tabs/#section-1
Regards
How can I add/enable product reviews?
Hello G,
WooCommerce > Settings > Products > Enable product reviews
If this doesn’t work, provide temporary wp-admin access, so we can take a closer look.
Regards
That does not work. I even tried to add Customer Review Plugin and that does not work either.
Hello,
WooCommerce displays Reviews in tabs. Tabs were disabled in theme options http://i.prntscr.com/59knRy2mQTCDC8L48z0Mqw.png
I have enabled them. Check now https://www.shoparzo.com/product/7-chakra-bead-bracelet/ .
Regards
-How can anyone leave reviews without being actual subscribers or customers or logged in? I have unchecked the box in the settings in Discussion to: Users must be registered and logged in to comment, but it is still requiring to be logged in to leave review.
-Can reviews also be added manually?
-I don’t want description written twice once by product image then another by bottom next to additional information and review
Hello @G,
1/ Do you have a server cache or CDN? Make sure that all cache is cleared.
2/ Go to Product page > Reviews tab > post review
3/ You added the same text in settings of product – Description and Short description – https://gyazo.com/2237fc534a065ffd0e0e15038f026b8b So edit this content, or use code to remove Description tab – https://docs.woocommerce.com/document/editing-product-data-tabs/ , or custom CSS code to disable the short description –
.single-product .woocommerce-product-details__short-description {
display: none;
}
Regards
Ok I added that css code in additional css code and now all my product description has disappeared! That is not what I wanted. I want to just display the product description one time on the product page and not twice.
-how can I show product description again
-I see the review in product edit page but it doesn’t show star rating (1,2,3,4,5 stars) also when rating it shows the person logged into the dashboard as the product reviewer, I don’t want it to show whose logged rather be able to create a name, fill in review and be able to rate the product with 1,2,3,4 or 5 stars. Is this not possible??
Hello G,
Please post only 1 question in 1 topic. Thanks in advance.
– Check my previous reply one more time. The code hides short-description, so on this product page you can see only Main description – https://gyazo.com/e599f3047badca519f7fdb0199d9c5df For products, like in your latest screenshot, where the Main description was not added, this code is not suitable, so just delete the code from where you added it.
Edit products and delete unrequited descriptions manually – https://gyazo.com/2237fc534a065ffd0e0e15038f026b8b
2 description is not a bug, but default functionality, it depends on you to add 1 description or 2.
– Contact support of WooCommerce to get assistance.
Regards
-Is there not a way to show only Reviews on product page section on the bottom instead of all 3 Description/ Additional Information / Reviews?
https://docs.woocommerce.com/document/editing-product-data-tabs/ :
/**
* Remove product data tabs
*/
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] ); // Remove the description tab
unset( $tabs['reviews'] ); // Remove the reviews tab
unset( $tabs['additional_information'] ); // Remove the additional information tab
return $tabs;
}
But I’m getting errors.
-Also there is an error in that single product pages display different things ie; some show additional tabs on bottom of page, some dont
-Contact woocommerce to get assistance about what?
-I have enabled require star rating on woocommerce settings but it’s still not working. I asked woocommerce and they said that is a xstore theme issue.
Hello,
1) Are you trying to add PHP code to CSS code section? You can’t use PHP code in the CSS code section!
In the WooCommerce docs it’s clearly mentioned https://prnt.sc/1ioqzod
If I add the PHP code to child theme functions.php it works ok https://prnt.sc/1iorddk
2) You need to enable review not just in general WooCommerce settings but also for the product https://prnt.sc/1iorlkw or using bulk edit https://prnt.sc/1iorsch
So, I don’t see any problem with it that comes from our theme.
3) WooCommerce has 2 descriptions:
a) short description.
b) full product description. If you don’t need full description then why do you add that https://prnt.sc/1iosm2n
I hope I explained this moment in detail.
Regards
Ok I see! Thank you but now I have two questions regarding the comments/reviews left, how can I disable the time and date stamp that they were written? I don’t want date to show on the single page product reviews. Last, how can a reviewer upload an image with their review. I would like them to have that option to be able to upload an image with their review left.
Hello,
You may try that code. Additional customization is outside the scope of our support. Also, you can hide the date using simple custom CSS (Theme Options > Custom CSS)
#reviews .meta time {
display: none;
}
WooCommerce does not allow to attach the file to review. Look for third-party plugins to implement this or submit additional customization request here.
Regards
What about something like it not asking for email address input? Can someone leave just review but not leave their email address? Also I have selected the box for show verified owner on reviews but they’re still not showing as that.
Hello,
Our theme does not have any extra options to manage reviews. All the available options are WooCommerce plugin options, so if WooCommerce does not have the option to disable email then you need to look for third-party plugins to implement this.
I don’t see the problem with the verified owner label https://prnt.sc/1jt60l6 User should buy the product, the order should be completed and then if he leaves the review he will get that label.
Regards
You must be logged in to reply to this topic.Log in/Sign up