This commit is contained in:
Oliver
2025-11-21 10:31:08 -03:00
parent 6336cc171b
commit bc613d668f

View File

@@ -142,7 +142,7 @@ function openModal(productHref) {
form.querySelector('input[name="category"]').value = category || ""; form.querySelector('input[name="category"]').value = category || "";
form.querySelector('input[name="product"]').value = product || "Unknown"; form.querySelector('input[name="product"]').value = product || "Unknown";
form.dataset.webhook = config.webhook || ""; form.dataset.webhook = config.webhook || "";
modal.querySelector("#productText").textContent = `You will buy ${product} for $${price}.`; modal.querySelector("#productText").textContent = `You will buy ${product} for $${price}. We have send an Email with the payment details.`;
addUtmFields(form); // Read from cookie or defaults addUtmFields(form); // Read from cookie or defaults
} }