/** * Get products based on search query with merchant filtering */ private function get_search_products($atts) { global $wpdb; $search_term = $atts['search']; $search_mode = isset($atts['search_mode']) ? $atts['search_mode'] : 'comprehensive'; $product_ids = array(); // Mode 1: Basic WordPress search (fastest but limited) if ($search_mode === 'basic') { $args = array( 'post_type' => 'product', 'post_status' => 'publish', 's' => $search_term, 'posts_per_page' => -1, 'fields' => 'ids' ); $query = new WP_Query($args); $product_ids = $query->posts; } // Mode 2: Title only search using LIKE elseif ($search_mode === 'title_only') { $product_ids = $wpdb->get_col($wpdb->prepare(" SELECT ID FROM {$wpdb->posts} WHERE post_type = 'product' AND post_status = 'publish' AND post_title LIKE %s ", '%' . $wpdb->esc_like($search_term) . '%')); } // Mode 3: Comprehensive search (default) else { // Direct SQL search for maximum compatibility $search_like = '%' . $wpdb->esc_like($search_term) . '%'; // Search in titles and content $title_content_ids = $wpdb->get_col($wpdb->prepare(" SELECT ID FROM {$wpdb->posts} WHERE post_type = 'product' AND post_status = 'publish' AND (post_title LIKE %s OR post_content LIKE %s OR post_excerpt LIKE %s) ", $search_like, $search_like, $search_like)); if (!empty($title_content_ids)) { $product_ids = array_merge($product_ids, $title_content_ids); } // Search by SKU $sku_ids = $wpdb->get_col($wpdb->prepare(" SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key='_sku' AND meta_value LIKE %s ", $search_like)); if (!empty($sku_ids)) { $product_ids = array_merge($product_ids, $sku_ids); } // Search in product categories $cat_ids = $wpdb->get_col($wpdb->prepare(" SELECT tr.object_id FROM {$wpdb->term_relationships} tr JOIN {$wpdb->term_taxonomy} tt ON tr.term_taxonomy_id = tt.term_taxonomy_id JOIN {$wpdb->terms} t ON tt.term_id = t.term_id WHERE tt.taxonomy = 'product_cat' AND t.name LIKE %s ", $search_like)); if (!empty($cat_ids)) { $product_ids = array_merge($product_ids, $cat_ids); } } // Remove duplicates $product_ids = array_unique($product_ids); if (empty($product_ids)) { return array(); } // Filter out hidden products $visible_product_ids = array(); foreach ($product_ids as $product_id) { $product = wc_get_product($product_id); if ($product && $product->is_visible()) { $visible_product Blazers Archives - Page 20 of 26 - Claire's Picks
Claire Wears

Claire’s Picks

  • Beauty
  • Get The Look
  • Shopping
  • Style
  • Claire’s Picks

Blazers

HomeCoats & JacketsBlazersPage 20
  • All Products
  • Hot Products
  • New Products
  • Sale Products
  • 311 products Showing 229–240 of 311 results

  • Scotch and Soda Printed Blazer Pyjamas Pink30%
    Buy product

    Scotch and Soda Printed Blazer Pyjamas Pink

    $145.00 Original price was: $145.00.$101.50Current price is: $101.50.
  • Self-Portrait Off White Tweed & Plisse Blazer Wrap Over Midi Dress S10%
    Buy product

    Self-Portrait Off White Tweed & Plisse Blazer Wrap Over Midi Dress S

    $194.00 Original price was: $194.00.$175.00Current price is: $175.00.
  • Sisley - Beige Blazer With Belt, Woman, Beige, Size: 4830%
    Buy product

    Sisley – Beige Blazer With Belt, Woman, Beige, Size: 48

    $159.00 Original price was: $159.00.$111.30Current price is: $111.30.
  • Sisley - Denim Look Blazer, Woman, Blue, Size: 4850%
    Buy product

    Sisley – Denim Look Blazer, Woman, Blue, Size: 48

    $179.00 Original price was: $179.00.$89.50Current price is: $89.50.
  • Sisley - Long Blazer, Woman, Soft Pink, Size: 4850%
    Buy product

    Sisley – Long Blazer, Woman, Soft Pink, Size: 48

    $179.00 Original price was: $179.00.$89.50Current price is: $89.50.
  • Sneakers Nike W Blazer Mid '77 Next Nature White/ Black UK 2.515%
    Buy product

    Sneakers Nike W Blazer Mid ’77 Next Nature White/ Black UK 2.5

    $97.95 Original price was: $97.95.$83.49Current price is: $83.49.
  • Sophisticated Era Black Oversized Blazer49%
    Buy product

    Sophisticated Era Black Oversized Blazer

    $74.00 Original price was: $74.00.$38.00Current price is: $38.00.
  • Spencer Oversized Blazer80%
    Buy product

    Spencer Oversized Blazer

    $344.99 Original price was: $344.99.$68.99Current price is: $68.99.
  • Sportmax Python-print Oversized Leather Blazer - Woman Blazers Brown It - 4050%
    Buy product

    Sportmax Python-print Oversized Leather Blazer – Woman Blazers Brown It – 40

    $2,680.00 Original price was: $2,680.00.$1,340.00Current price is: $1,340.00.
  • STAND STUDIO Pink Keeva Blazer39%
    Buy product

    STAND STUDIO Pink Keeva Blazer

    $309.00 Original price was: $309.00.$190.00Current price is: $190.00.
  • Stella McCartney - Oversized Double-Breasted Blazer Jacket - Green - IT 38 - Moda Operandi75%
    Buy product

    Stella McCartney – Oversized Double-Breasted Blazer Jacket – Green – IT 38 – Moda Operandi

    $2,100.00 Original price was: $2,100.00.$525.60Current price is: $525.60.
  • Stella McCartney Belted Blazer44%
    Buy product

    Stella McCartney Belted Blazer

    $867.00 Original price was: $867.00.$489.00Current price is: $489.00.
  • 1
  • 2
  • 3
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
Copyright © 2025
Go to top
Close

Search

View more
Close

My Account

Login

Lost your password?

Close

Cart

Shopping Cart 0

No products in the basket.

Close

Product Quick View

  • Beauty
  • Get The Look
  • Shopping
  • Style
  • Claire’s Picks
  • Shopping Cart 0
  • Login