
Once again, we’ve partnered with Inspired Adventures for our next Cherish Challenge — and in 2027, we’re heading to the breathtaking landscapes of Patagonia from 7–12 April.
Registrations will be opening very soon. In the meantime, please register your interest using the form below. A member of the Cherish Team will be in touch the moment registrations go live.
// Update iframe src with parent page parameters
const ffdabcIframe = document.getElementById('pages-eoi-patagonia2027-iframe');
const ffdabcParams = new URLSearchParams(window.location.search);
const ffdabcIframeParams = new URLSearchParams();
['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content'].forEach(p => ffdabcParams.get(p) && ffdabcIframeParams.set(p, ffdabcParams.get(p)));
if (ffdabcParams.get('source')) ffdabcIframeParams.set('source', ffdabcParams.get('source'));
else if (ffdabcParams.get('utm_source')) ffdabcIframeParams.set('source', ffdabcParams.get('utm_source'));
ffdabcIframe.src = ffdabcIframeParams.toString() ? `https://cherish.supporterhub.net.au/pages/eoi-patagonia2027?${ffdabcIframeParams}` : 'https://cherish.supporterhub.net.au/pages/eoi-patagonia2027';
// Handle iframe height messages
window.addEventListener('message', (event) => {
if (!event.data.url_path?.startsWith('/pages/eoi-patagonia2027')) return;
ffdabcIframe.style.height = event.data.height + 'px';
}, false);