Voeg deze code toe aan functions.php van je thema of Code Snippets.


// Attributes below add to cart
add_action( 'woocommerce_single_product_summary', 'wc_custom_show_attributes_outside_tabs', 35 );
function wc_custom_show_attributes_outside_tabs() {
global $product;
$product->list_attributes();
}