- This topic has 1 reply, 2 voices, and was last updated 7 years, 9 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Forums › Pro Themes › Clean Commerce Pro › Remove Reviews tab on product page
I am just starting selling products and find the Review tab redundant on product page (and irritating) since I neither have any reviews, nor want to create fake ones. Is there a way to turn it off (and then, maybe, turn it later)?
Hello @susannaw
If you want to turn the review off of the particular page by going to particular product page screen and turn off the comments .
Please refer to below link for more detail info:
http://image.prntscr.com/image/9046151fac77428e9a5c46502d449dd9.png
But if you want to remove the review from all the product page you have to go through the child theme approach.
You ca refer to below link for the plugin to create the child theme:
https://wordpress.org/plugins/wp-child-theme-generator/
After creating and activating the child theme paste below given code in your child theme’s functions.php file.
add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
function wcs_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}
Hope this helps.
For further confusion, we are always here for you.
Best Regards!!
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |