/** * Checkout: consentement contenu numérique (exécution immédiate / perte du droit de rétractation) * Affiché uniquement si le panier contient au moins 1 produit téléchargeable. */ add_action('woocommerce_review_order_before_submit', function () { if ( is_admin() || ! function_exists('WC') || ! WC()->cart ) { return; } // Afficher seulement si au moins un produit est "downloadable" $has_downloadable = false; foreach ( WC()->cart->get_cart() as $item ) { $product = $item['data']; if ( $product && $product->is_downloadable() ) { $has_downloadable = true; break; } } if ( ! $has_downloadable ) { return; } echo ''; }); add_action('woocommerce_checkout_process', function () { if ( ! isset($_POST['digital_consent']) ) { wc_add_notice('Veuillez confirmer l’exécution immédiate de la livraison numérique pour continuer.', 'error'); } }); add_action('woocommerce_checkout_create_order', function ($order) { if ( isset($_POST['digital_consent']) ) { $order->update_meta_data('_digital_consent', 'yes'); } }, 10, 1); Contact – Mandragonbeat – Drumkits

Contact

Tu as une question avant achat, un souci de téléchargement, ou besoin d’assistance ?
📩 mandragon@mandragonbeat.com

Support prioritaire (commandes)
Merci d’indiquer dans ton message :

  • l’e-mail utilisé lors de la commande
  • le nom du produit acheté
  • la date/heure approximative d’achat
  • une capture si tu as un message d’erreur

Temps de réponse moyen : 24–48h (jours ouvrés).