/* ============================================================
Étape 2 : ENREGISTREMENT ET REDIRECTION SUR LA MÊME PAGE
============================================================ */
add_action('template_redirect', function() {
if (isset($_GET['moncash_don']) && $_GET['moncash_don'] == '1') {
$amount = sanitize_text_field($_GET['amount']);
$phone = sanitize_text_field($_GET['phone']);
$film_id = intval($_GET['post_id']); // On récupère l'ID envoyé par le JS
if (!empty($amount) && !empty($phone) && $film_id > 0) {
$time = current_time('mysql');
$data = array(
'comment_post_ID' => $film_id,
'comment_content' => "INTENTION DE DON MONCASH : Montant: $amount HTG | Téléphone: $phone",
'comment_type' => 'intent_don',
'comment_author' => $phone,
'comment_date' => $time,
'comment_approved' => 1,
);
wp_insert_comment($data);
// REDIRECTION CRUCIALE : On retourne sur la page du film avec le statut merci
wp_redirect(get_permalink($film_id) . "?status=merci");
exit;
}
}
});
Warning: Cannot modify header information - headers already sent by (output started at /home/noulpatn/public_html/wp-content/themes/noulive-child/functions.php:1) in /home/noulpatn/public_html/wp-includes/pluggable.php on line 1221