Home › Forums › WoodMart support forum › remove additional information tab remove additional information tab This topic has 3 replies, 3 voices, and was last updated 4 years, 10 months ago by Aizaz Imtiaz Awan. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts October 30, 2019 at 9:07 am #153391 masood nikrooParticipant 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. October 30, 2019 at 10:40 am #153414 Aizaz Imtiaz AwanKeymaster 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. February 16, 2020 at 4:23 am #173741 yogamat12Participant where is the functions.php? February 17, 2020 at 7:55 am #173926 Aizaz Imtiaz AwanKeymaster 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. Author Posts Tagged: remove additional tab Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to create new topics. Login / Register