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

    This has been covered in many ways (both CSS and PHP) over the years, but the previous solutions no longer work. I’m using Enfold theme version 4.2.1510156365 with a child theme that has a default functions.php (i.e. there are no modifications to functions.php), woocommerce 3.2.6 and WordPress version 4.9.4. Neither the previously suggested CSS or PHP solutions work with the Enfold theme. They do work with other themes that I have used recently.

    #910778

    Hey carylwills,

    Please add following code to Functions.php file in Appearance > Editor

    add_filter( 'woocommerce_product_tabs', 'av_remove_product_tabs', 98 );
    function av_remove_product_tabs( $tabs ) {
        unset( $tabs['additional_information'] ); 
        return $tabs;
    }

    and let us know if that does not work.

    Best regards,

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.