skip to Main Content

Search WordPress Code Snippets – Quick Solutions for Developers


How to Disable WooCommerce Product Reviews Tab

By disabling product reviews, you can simplify your WooCommerce product pages and direct attention to other important content.

// Disable product reviews
add_filter( 'woocommerce_product_tabs', 'codebykp_disable_product_reviews_tab', 98 );
function codebykp_disable_product_reviews_tab( $tabs ) {
    unset( $tabs['reviews'] ); // Remvoe reviews tab
    return $tabs;
}

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Back To Top