Skip to main content
Login Join
Snippet · PHP

Disable WooCommerce Product Reviews

Shared by Amit Dholiya · July 16, 2026

4 views
Back to Snippets

Steps

  1. Open functions.php.
  2. Add the code below.
  3. 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'
);
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments