Voeg onderstaande code toe aan functions.php en pas de variabelen en attributes aan.
// Specs to archive item add_action('woocommerce_after_shop_loop_item_title', 'cstm_display_product_category', 5); function cstm_display_product_category() { global $product; $size= $product->get_attribute('maat'); $color= $product->get_attribute('kleur'); $material= $product->get_attribute('materiaal'); ?> <div class="specs-wrapper"> <?php if (!empty($size)) { echo '<div class="specs">' . $size . '</div>'; } if (!empty($color)) { echo '<div class="specs">' . $color . '</div>'; } if (!empty($material)) { echo '<div class="specs">' . $material . '</div>'; } ?> </div> <?php }