Contact Us

Get in Touch with Marketopia HQ

At Marketopia HQ, we're passionate about providing the latest insights and trends in the world of marketing. Whether you're a seasoned marketer looking for fresh perspectives or someone just starting their journey, we're here to help.

If you have questions, need further information, or want to discuss how we can support your marketing goals, feel free to reach out!

// This is where you'd typically insert the GoHighLevel-specific JavaScript } // Check if user has seen popup recently let lastPopup = sessionStorage.getItem('POPUP_OPENED'); let timeDelta = lastPopup ? (new Date() - new Date(lastPopup)) / 1000 : Infinity; // Show popup once a day if the user is not a member if (!checkMember() && timeDelta > 86400) { // Record the current time sessionStorage.setItem('POPUP_OPENED', new Date().toISOString()); // Show popup when user scrolls 25% of the page window.addEventListener("scroll", () => { let scrollPercentage = (window.scrollY / (document.documentElement.scrollHeight - window.innerHeight)) * 100; if (scrollPercentage > 25) { showPopup(); } }); }