Based On Reviews

Trusted by users and UK charites

Welcome Back, Dream Chaser

Your personal dashboard — track your entries, manage your details, and stay ready for the next big win.

Payment didn’t go through
But don’t worry

Try again to secure your spot in the draw.
// GLOBAL POPUP OPENER (Elementor or fallback) function openDream2WinPopup() { if (typeof elementorProFrontend !== 'undefined' && elementorProFrontend.modules && elementorProFrontend.modules.popup) { // Open Elementor popup 1322 elementorProFrontend.modules.popup.showPopup({ id: 1322 }); } else { // Fallback if Elementor popup isn't loaded const box = document.querySelector('.dream2win-notice-container'); if (box) box.style.display = 'block'; } } // MUTATION OBSERVER FOR CHECKOUT ERRORS document.addEventListener('DOMContentLoaded', function() { const checkoutForm = document.querySelector('form.checkout'); if (!checkoutForm) return; const observer = new MutationObserver(function() { const errorBox = document.querySelector('.woocommerce-NoticeGroup-checkout'); if (!errorBox) return; const html = errorBox.innerHTML.trim(); if (!html) return; const popupContent = document.querySelector('.dream2win-notice-container'); if (popupContent) { popupContent.innerHTML = html; } openDream2WinPopup(); }); observer.observe(checkoutForm, { childList: true, subtree: true }); });