Steps
- Open
functions.php. - Add the code below.
- Save the file.
Done — product reviews and ratings will be disabled across your WooCommerce store.
function disable_woocommerce_reviews() {
remove_post_type_support( 'product', 'comments' );
remove_post_type_support( 'product', 'reviews' );
}
add_action(
'init',
'disable_woocommerce_reviews'
);