Extra informatie tabblad uitschakelen
Als je WooCommerce producten aanmaakt met variaties dan komt er standaard een tabbald ‘extra informatie’ met daarop alle eigenschappen opgesomd. Als je dit uit wilt schakelen kun je onderstaande code in de functions.php van je thema plaatsen of in je website inladen via bijvoorbeeld de plugin Code Snippets.
add_filter( ‘woocommerce_product_tabs’, ‘lamper_remove_product_tabs’, 98 );
function lamper_remove_product_tabs( $tabs ) {
unset( $tabs[‘additional_information’] );
return $tabs;
}