New Landing How can we help? Themeforest Theme Support Neighborhood How to remove the review tab on products page

Viewing 2 posts - 1 through 2 (of 2 total)
  • #63987
    olesenreck
    Member
    Post count: 27

    How do I remove the tab “Reviews” on the product page? I have turned it off in WooCommerce, but that didn’t help.

    #64055
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please put this code in your functions.php of child theme

    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;
    }

    Hopefully it should work .
    Thanks

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register