Standaard is in WooCommerce het extra informatie tabje actief. Maar wat als je reviews liever als eerste laat zien. Dit doe je heel eenvoudig door onderstaand stukje code toe te voegen aan je functions.php
Succes!
add_filter( 'woocommerce_product_tabs', 'daan_reorder_tabs', 98 );
function daan_reorder_tabs( $tabs ) {
$tabs['reviews']['priority'] = 5; // Reviews eerst
$tabs['description']['priority'] = 10; // Omschrijving op 2
return $tabs;
}