Home › Forums › Space themes support forum › change the contents of the tabs change the contents of the tabs This topic has 3 replies, 2 voices, and was last updated 1 year, 10 months ago by Luke Nielsen. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts January 10, 2023 at 1:37 pm #434199 clientiParticipant Hi! I don’t remember how to modify the content of the tabs in the product sheet. In particular those that remain unchanged for all products (for example shipments and returns and brands). Can you help me? Attachments:You must be logged in to view attached files. January 10, 2023 at 3:04 pm #434228 Luke NielsenKeymaster Hello, These tabs can be edited via Theme Settings -> Single product -> Tabs. https://monosnap.com/file/piHlEm6YZW13Y34RfbdMywZCAa8wsv In case you need any additional help, I’d be more than happy to assist you. Kind Regards January 10, 2023 at 4:49 pm #434306 clientiParticipant thank you! Is it possible to delete this tab instead? Attachments:You must be logged in to view attached files. January 10, 2023 at 4:53 pm #434309 Luke NielsenKeymaster Hello, Please enter the below code into the functions.php file in your child theme. add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 ); function my_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); // To remove the additional information tab return $tabs; } Then clear the cache and check the tabs area again. Kind Regards Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to create new topics. Login / Register