/* ========================================================= * SAFE SEARCH BLOCK * Product Image Center * Exact SKU / Exact Barcode, partial title only. * * Replace the existing: * if ($search !== '') { ... } * block with this one. * ======================================================= */ if ($search !== '') { $search = trim((string) $search); $digits = self::clean_barcode($search); /* * A numeric-looking search is treated as a product code. * It must NOT fall through to partial title/SKU/barcode matching. */ $is_numeric_code = ( $digits !== '' && preg_match('/^[0-9\s\-\.\(\)\+\/]+$/', $search) ); if ($is_numeric_code) { /* * 1) Exact SKU. * 2) Exact normalized barcode / GTIN / EAN. */ $search_sql = "(TRIM(sku.meta_value) = %s"; $params[] = $search; $search_sql .= " OR EXISTS ( SELECT 1 FROM {$pm} bx WHERE bx.post_id=p.ID AND ( LOWER(bx.meta_key) LIKE '%barcode%' OR LOWER(bx.meta_key) LIKE '%gtin%' OR LOWER(bx.meta_key) LIKE '%ean%' ) AND REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE( bx.meta_value,' ',''),'-',''),'.',''),'/',''),'(',''),')',''),'+',''),CHAR(9),'') = %s )"; $params[] = $digits; $search_sql .= ")"; } else { /* * Text search: * - Product title may be partial. * - SKU is exact only. * - Barcode/GTIN/EAN is exact only when digits are present. */ $like = '%' . $wpdb->esc_like($search) . '%'; $search_sql = "(p.post_title LIKE %s OR TRIM(sku.meta_value) = %s"; $params[] = $like; $params[] = $search; if ($digits !== '') { $search_sql .= " OR EXISTS ( SELECT 1 FROM {$pm} bx WHERE bx.post_id=p.ID AND ( LOWER(bx.meta_key) LIKE '%barcode%' OR LOWER(bx.meta_key) LIKE '%gtin%' OR LOWER(bx.meta_key) LIKE '%ean%' ) AND REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE( bx.meta_value,' ',''),'-',''),'.',''),'/',''),'(',''),')',''),'+',''),CHAR(9),'') = %s )"; $params[] = $digits; } $search_sql .= ")"; } $where[] = $search_sql; } التعليقات على: سويت شيرت سمرملتون شبابي https://elmahalawystores.com/product/%d8%b3%d9%88%d9%8a%d8%aa-%d8%b4%d9%8a%d8%b1%d8%aa-%d8%b3%d9%85%d8%b1%d9%85%d9%84%d8%aa%d9%88%d9%86-%d8%b4%d8%a8%d8%a7%d8%a8%d9%8a/ المحلاوي من زمان ارخص من اي مكان Thu, 10 Sep 2026 10:55:23 +0000 hourly 1