📦 Бесплатная доставка • Бесплатный возврат и обмен

Все

77 товаров

© 2025 WALKHERO, Powered by Shopify

  • American Express
  • Apple Pay
  • Google Pay
  • Mastercard
  • PayPal
  • Shop Pay
  • Union Pay
  • Visa

Login

Forgot your password?

Don't have an account yet?
Create account

`; } document.addEventListener("mouseleave", onExitIntent); } if (shouldShowPopup && autoTriggerOnScroll && autoTriggerScrollValue >= 0) { const quizURL = "".replace("#open-quiz-", ""); if ( document?.querySelector(".ppf-popup")?.innerHTML) { document.querySelector(".ppf-popup").innerHTML += `
`; } document.addEventListener("scroll", onScroll); } if (shouldShowPopup && autoTriggerAfterXSeconds && autoTriggerTimeValue >= 0) { const quizURL = "".replace("#open-quiz-", ""); if ( document?.querySelector(".ppf-popup")?.innerHTML) { document.querySelector(".ppf-popup").innerHTML += `
`; } setTimeout(onTimeout, autoTriggerTimeValue * 1000); } document.addEventListener("click", (e) => { let targetElement = e.target; while (targetElement && targetElement !== document) { if (targetElement.tagName === 'A' && targetElement.getAttribute("href")?.startsWith("#open-quiz-")) { e.preventDefault(); const quizURL = targetElement.getAttribute("href").replace("#open-quiz-", ""); displayPopup(quizURL); return; } if (targetElement.classList?.contains("ppf-popup-close")) { hidePopup(); return; } targetElement = targetElement.parentNode; } }); });