-
- -10%
- Halfautomaat
Contimac combi lasapparaat INVERTER EASYMIG 160
- Oorspronkelijke prijs was: €845,79.€759,00Huidige prijs is: €759,00.
- Toevoegen aan winkelwagen
if ( ! defined('ABSPATH') ) return; /* ------------------------------- 🎯 REFINEMENT BAR (BETROUWBAAR) --------------------------------*/ add_action('woocommerce_before_shop_loop', function(){ if ( ! is_search() ) return; global $wp_query; if ( empty($wp_query->posts) ) return; $search = strtolower(get_search_query()); $brand_scores = []; $category_scores = []; foreach ( $wp_query->posts as $index => $post ) { $id = $post->ID; $product = wc_get_product($id); if ( ! $product ) continue; $score = max(10 - $index, 1); if ( stripos($post->post_title, $search) !== false ) { $score += 10; } /* CATEGORY COUNT */ $cats = wp_get_post_terms($id, 'product_cat'); if ( ! is_wp_error($cats) ) { foreach ( $cats as $cat ) { if ( ! isset($category_scores[$cat->slug]) ) { $category_scores[$cat->slug] = [ 'name' => $cat->name, 'score' => 0 ]; } $category_scores[$cat->slug]['score'] += $score; } } /* MERKEN */ $brands = wp_get_post_terms($id, 'pa_merk'); if ( ! is_wp_error($brands) ) { foreach ( $brands as $brand ) { if ( ! isset($brand_scores[$brand->slug]) ) { $brand_scores[$brand->slug] = [ 'name' => $brand->name, 'count' => 0 ]; } $brand_scores[$brand->slug]['count']++; } } } if ( empty($category_scores) ) return; uasort($category_scores, fn($a,$b)=> $b['score'] <=> $a['score']); uasort($brand_scores, fn($a,$b)=> $b['count'] <=> $a['count']); $category_scores = array_slice($category_scores,0,8,true); $brand_scores = array_slice($brand_scores,0,8,true); echo '