Home Forums WoodMart support forum Delete – button additional information by all products Reply To: Delete – button additional information by all products

#404818

Luke Nielsen
Keymaster

Hello,

1. The below code will help you to remove the “Additional information” tab.

if ( ! function_exists('my_remove_additional_tab') ) {
	function my_remove_additional_tab( $tabs ) {

		unset( $tabs['additional_information'] );    // Remove the additional information tab

		return $tabs;
	  }

	  
	add_filter( 'woocommerce_product_tabs', 'my_remove_additional_tab', 98 );
}

2. In order to disable the “Compare” functionality, please navigate to Theme Settings -> Shop -> Compare -> turn off these 2 option (“Enable compare”, “Show button on product grid”).

https://prnt.sc/4KXsYr8hiSwN

Thanks for your time and have a great day.

Kind Regards