Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23941

    Hi,

    How can I hide (disable) the products reviews tab?

    Thanks,

    Thomas

    #121696

    Hi Thomas,

    WooCommerce doesn’t have an overall option for it as far as I know.

    You can disable reviews on each product individually from the Product data>Advanced section on the individual product. You can also try adding the following to your functions.php file:

    add_filter( 'woocommerce_product_tabs', 'custom_woo_remove_reviews_tab', 98);
    function custom_woo_remove_reviews_tab($tabs) {

    unset($tabs['reviews']);

    return $tabs;
    }

    Regards,

    Devin

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘woocommerce – disable reviews’ is closed to new replies.