Disable Reviews - by ibuyukarslan - on WordPress WooCommerce support

This topic has 5 replies, 3 voices, and was last updated 7 years ago ago by Olga Barlow

  • Avatar: ibuyukarslan
    ibuyukarslan
    Participant
    April 11, 2017 at 09:37

    How to i disable all review in fuction and which function file is the correct one to add code ?

    Thanks

    4 Answers
    Avatar: ziga32
    ziga32
    Participant
    April 11, 2017 at 11:45
    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    April 11, 2017 at 13:49

    Hello,

    Or use WC snippet https://docs.woocommerce.com/document/editing-product-data-tabs/ in child theme functions.php.

    Regards

    Avatar: ibuyukarslan
    ibuyukarslan
    Participant
    April 13, 2017 at 21:50

    Cannot disable it ?

    Could you write more spesific @Olga Barlow ?

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    April 14, 2017 at 10:27

    Hello,

    Edit functions.php of the child theme and add the following code

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

    If you can’t use the code maybe bundled editing is the better way for you? See http://prntscr.com/ewbppc

    Regards

  • Viewing 5 results - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.