Оптовым клиентам

Кофты

Сортировка по:

Джемпер

255.00 грн
Заканчивается
9 10 11 12
  • Темно-синій
  • Темно-бирюзовый
  • Білий
  • Голубой
  • Бежевый
console.log("CUSTOM JS LOADED"); document.addEventListener("DOMContentLoaded", function () { const observer = new MutationObserver(function (mutations) { mutations.forEach(function (mutation) { const text = document.body.innerText.toLowerCase(); if ( text.includes("заказ получен") || text.includes("замовлення прийнято") || text.includes("thank you for your order") ) { if (!window.orderTracked) { window.orderTracked = true; if (typeof gtag === "function") { gtag("event", "purchase_lead", { event_category: "conversion", event_label: "order_success" }); } console.log("ORDER SENT tracked"); } } }); }); observer.observe(document.body, { childList: true, subtree: true }); });