
PROTEGE CAHIER 24*32
4.46 MAD
Disponible en stock
add_action('wp_ajax_save_reference_code', function () { if (!is_user_logged_in()) { wp_send_json_error('Non autorisé'); } $user_id = get_current_user_id(); $ref = sanitize_text_field($_POST['reference'] ?? ''); if (!$ref) { wp_send_json_error('Référence manquante.'); } // 1. Save as last reference update_field('last_reference_used', $ref, 'user_' . $user_id); // 2. Append to history $history = get_field('reference_history', 'user_' . $user_id); $history = trim($history); if ($history) { $history .= "\n" . $ref; } else { $history = $ref; } update_field('reference_history', $history, 'user_' . $user_id); wp_send_json_success("✅ Référence enregistrée : $ref"); });
4.46 MAD
Disponible en stock
Reviews
There are no reviews yet.