(() => { if (!window.location.pathname.includes('/productos/')) return; if (LS?.theme?.name === "Patagonia") return; // =============================== // GOcuotas // =============================== const createGocuotasDescription = () => { if (document.querySelector('.gocuotas-info-container-cart')) return null; const GocuotasDescription = document.createElement("div"); GocuotasDescription.classList.add('col-12', 'mb-2', 'p-0'); const newContainer3 = document.createElement("div"); newContainer3.classList.add("gocuotas-info-container-cart"); // Contenido distinto por theme if (LS.theme.name === 'Simple') { newContainer3.innerHTML = `
Logo GOcuotas Cuotas SIN interés con DÉBITO
`; } else if (LS.theme.name === 'Trend') { newContainer3.innerHTML = `
Logo GOcuotas Cuotas SIN interés con DÉBITO
`; } else { newContainer3.innerHTML = `
Logo GOcuotas Cuotas SIN interés con DÉBITO
`; } GocuotasDescription.appendChild(newContainer3); return GocuotasDescription; }; const insertGocuotasDescription = (selector, position = 'beforeend') => { const container = document.querySelector(selector); if (container && !document.querySelector('.gocuotas-info-container-cart')) { const block = createGocuotasDescription(); if (block) container.insertAdjacentElement(position, block); } }; // Theme Default insertGocuotasDescription('.js-cart-total-container', 'beforeend'); // Theme Trend insertGocuotasDescription('.js-visible-on-cart-filled.cart-totals.cart-total', 'beforeend'); })();