إدارة الموارد البشرية
ISBN : تحت الطبع
2
Items sold in last 3 days
Ajouter 7.000,00 د.ج et bénéficier d'une livraison gratuite !
0
People watching this product now!
Catégorie : الاقتصاد
function sila_ajax_search() { $query = sanitize_text_field($_GET['query'] ?? ''); if (empty($query)) wp_send_json([]); error_log("=== SILA AJAX SEARCH === $query"); $url = 'http://localhost:9200/sila_books/_search'; $body = [ 'size' => 10, 'query' => [ 'multi_match' => [ 'query' => $query, 'fields' => ['title^3', 'publisher', 'isbn'], 'fuzziness' => 'AUTO' ] ] ]; $response = wp_remote_post($url, [ 'headers' => ['Content-Type' => 'application/json'], 'body' => json_encode($body) ]); if (is_wp_error($response)) { wp_send_json(['error' => $response->get_error_message()]); } $data = json_decode(wp_remote_retrieve_body($response), true); $hits = $data['hits']['hits'] ?? []; $results = []; foreach ($hits as $hit) { $book = $hit['_source']; // Reformat selon le modèle AJAX attendu par Woodmart $results[] = [ 'value' => $book['title'] ?? '', 'permalink' => 'https://www.booxium.com/sila/' . sanitize_title($book['title']), 'image' => 'https://www.booxium.com/wp-content/uploads/woocommerce-placeholder.jpg', 'price' => $book['price'] ?? '', 'price_html' => '' . esc_html($book['price'] ?? '') . ' دج', 'post_type' => 'product', 'publisher' => $book['publisher'] ?? '', 'stand' => $book['stand'] ?? '', 'pavilion' => $book['pavilion'] ?? '' ]; } wp_send_json($results); }