• Hey guys,

    How can I hide the ‘discussion’ tab? I’ve moved the review section onto the description tab so ideally want the discussion bit hidden as it’s not needed.

    Is there any way to remove the tabs entirely but keep the info thats in the description?

    i use elementor to buid it ??

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi, isobelperl, the following PHP code which can be entered into your functions.php file in your child theme or can be entered to your website using a code plugin such as Code Snippets should work on remove the reviews tab:

    add_filter( 'woocommerce_product_tabs', 'remove_reviews_tab', 20 );
    
    function remove_reviews_tab( $tabs ) {
    	
        unset( $tabs['reviews'] );
        
        return $tabs;
    }

    In case that code doesn’t work for you, you can also address this using some CSS to hide the tab:

    ul.wc-tabs > li#tab-title-reviews#tab-title-reviews {
        display: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to hide ‘discussion’ tab on product page’ is closed to new replies.