This topic has 5 replies, 3 voices, and was last updated 7 years, 7 months ago ago by Olga Barlow
How to i disable all review in fuction and which function file is the correct one to add code ?
Thanks
or you can just use this
https://wordpress.org/plugins/disable-woocommerce-reviews/
Hello,
Or use WC snippet https://docs.woocommerce.com/document/editing-product-data-tabs/ in child theme functions.php.
Regards
Cannot disable it ?
Could you write more spesific @Olga Barlow ?
Hello,
Edit functions.php of the child theme and add the following code
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['reviews'] ); // Remove the reviews tab
return $tabs;
}
If you can’t use the code maybe bundled editing is the better way for you? See http://prntscr.com/ewbppc
Regards
You must be logged in to reply to this topic.Log in/Sign up