Home New Guten Forums WoodMart support forum How to remove the tab “Additional Information” in product page

How to remove the tab “Additional Information” in product page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #662364

    zenthmi
    Participant

    How to remove the tab “Additional Information” in product page

    #662460

    zenthmi
    Participant

    how to install / configure a child theme? where can i get it from xtemos, thanks

    #662506

    Hung Pham
    Keymaster

    Hello zenthmi,

    Thanks for reaching to us.

    1. Paste the code in the functions.php file in your child theme.

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

    2. Here is our article on how to get the Child theme – https://xtemos.com/docs-topic/setup-child-theme/

    Kind Regards

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