de $ 11.286,47
Inicio
de $ 11.286,47
// Verificar si es la página de inicio function isHomePage() { return window.location.pathname === '/' || window.location.pathname === '/index.php' || window.location.pathname === '/es/' || // Para multitienda en español window.location.pathname === '/en/'; // Para multitienda en inglés } // Crear elementos del popup if (isHomePage()) { document.addEventListener('DOMContentLoaded', function() { // CSS (inyectado dinámicamente) var css = ` #promoPopup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 99999; display: none; justify-content: center; align-items: center; } .popup-content { position: relative; max-width: 90%; } .close-popup { position: absolute; top: -15px; right: -15px; color: white; font-size: 24px; cursor: pointer; } `; var style = document.createElement('style'); style.innerHTML = css; document.head.appendChild(style); // HTML var popupHTML = `