Home Forums WoodMart support forum remove additional information tab

remove additional information tab

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

    masood nikroo
    Participant

    Hello,
    i want to remove additional tab on all my products page.

    https://drive.google.com/file/d/12r01oNHHkTxNyhpg5LF0UNiTDt33P1sR/view?usp=drivesdk

    how can i do it?
    Regards.

    #153414

    Hello,

    To remove the additional information tab from your product page you can use the below custom code in your child theme funtions.php:

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

    Best Regards.

    #173741

    yogamat12
    Participant

    where is the functions.php?

    #173926

    Hello,

    To use the code you need to use the child theme functions.php file from wp-content/themes/woodmart-child/functions.php.

    Screenshot for Clarification: https://ibb.co/2dfTxhp

    Best Regards.

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