add_action('admin_post_nopriv_custom_order_coussin', 'create_order_coussin'); add_action('admin_post_custom_order_coussin', 'create_order_coussin'); function create_order_coussin() { if (!class_exists('WooCommerce')) return; $tel = sanitize_text_field($_POST['telephone']); $nom = sanitize_text_field($_POST['nom']); $adresse = sanitize_text_field($_POST['adresse']); $qty = intval($_POST['produit']); // 🔒 Block حسب téléphone فقط $key = 'order_' . $tel; if (get_transient($key)) { wp_die('
Votre commande a bien été enregistrée.
Notre équipe va vous contacter pour confirmer la livraison.
'); } // حفظ لمدة 30 دقيقة set_transient($key, true, 30 * MINUTE_IN_SECONDS); // 🛒 Product $product_id = 19; $product = wc_get_product($product_id); if (!$product) return; $order = wc_create_order(); $order->add_product($product, $qty); $address = array( 'first_name' => $nom, 'phone' => $tel, 'address_1' => $adresse, 'country' => 'CI' ); $order->set_address($address, 'billing'); $order->set_address($address, 'shipping'); $order->set_payment_method('cod'); $order->set_payment_method_title('Paiement à la livraison'); $order->calculate_totals(); $order->update_status('processing', 'Commande Coussin Gel'); wp_redirect(home_url('/merci')); exit; }