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

    how do i remove additional information from the page below.

    i have tried several code , but none works

    #945910

    Hi Armstrong88,

    Please try adding following code to bottom 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'] );  	// Remove the additional information tab
        return $tabs;
    }

    Best regards,
    Yigit

    #945925

    thanks , it works

    #947046

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘how do i remove additional information from woocommerce’ is closed to new replies.