Home Forums WoodMart support forum How to remove addition information tab please

How to remove addition information tab please

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #69963

    MAYZEL
    Participant
    #69975

    Eric Watson
    Participant

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    // Remove the additional information tab
    function woodmart_remove_product_tabs( $tabs ) {
        unset( $tabs['additional_information'] );
        return $tabs;
    }
    add_filter( 'woocommerce_product_tabs', 'woodmart_remove_product_tabs', 98 );

    Kind Regards
    XTemos Studio

    #69988

    MAYZEL
    Participant

    Thank you

    #69997

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

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

The topic ‘How to remove addition information tab please’ is closed to new replies.