undefined Risultati
/* =============================
GOOGLE ADS CONVERSION TRACKING
CLIENT APARTMENTS ONLY
REMOVE AFTER CAMPAIGN
============================= */
(function() {
var pagesToTrack = [
"/en/corallo", "/it/corallo", "/de/corallo",
"/en/medusa", "/it/medusa", "/de/medusa",
"/en/stella-marina", "/it/stella-marina", "/de/stella-marina"
];
var currentPath = window.location.pathname;
var match = pagesToTrack.some(function(path) {
return currentPath.includes(path);
});
if (match) {
gtag('event', 'conversion', {
'send_to': 'AW-18031373850/CTsRCKD05ZAcEJrcg5ZD'
});
}
})();
/* =============================
GOOGLE ADS CONTACT FORM TRACKING
ONLY IF CLIENT APARTMENTS SELECTED
REMOVE AFTER CAMPAIGN
============================= */
document.addEventListener("DOMContentLoaded", function() {
// selettore form Lodgify
var contactForm = document.querySelector("form.dm-contact-form"); // sostituire con ID/class reale
var apartmentSelect = document.querySelector("form.dm-contact-form select[name='apartment']"); // sostituire name reale
if(contactForm && apartmentSelect) {
contactForm.addEventListener("submit", function(e) {
var selected = apartmentSelect.value.toLowerCase();
var clientApartments = ["corallo", "medusa", "stella-marina"];
if(clientApartments.includes(selected)) {
setTimeout(function() {
gtag('event', 'conversion', {
'send_to': 'AW-18031373850/CTsRCKD05ZAcEJrcg5ZD'
});
}, 200);
}
});
}
});