const bannersUnhide = () => { const homeContianer = document.querySelector("[data-viucontainer]"); const homeCopyElement = document.querySelector("[data-viucopy]"); if (window.location.search.indexOf("c=viu") > 0 && window.location.search.indexOf("utm_campaign=viu") > 0 ) { homeContianer.classList.remove("hidden") homeCopyElement.classList.remove("hidden"); homeCopyElement.textContent = "VIU by HUB customers get 10% off every month for a whole year!"; } else if( window.location.search.indexOf("c=HeartPaw") > 0 && window.location.search.indexOf("utm_campaign=HeartPaw_Web") > 0) { homeContianer.classList.remove("hidden") homeCopyElement.classList.remove("hidden"); homeCopyElement.textContent = "Heart & Paw clients get 10% off every month for a whole year!"; } else if( window.location.search.indexOf("c=HeartPaw10") > 0 && window.location.search.indexOf("utm_campaign=HeartPaw_Intranet") > 0) { homeContianer.classList.remove("hidden") homeCopyElement.classList.remove("hidden"); homeCopyElement.textContent = "Heart & Paw employees get 10% off every month for life!"; } else if( window.location.search.indexOf("c=dogstrustusa") > 0 && window.location.search.indexOf("utm_campaign=dogstrustusa_web") > 0) { homeContianer.classList.remove("hidden") homeCopyElement.classList.remove("hidden"); homeCopyElement.textContent = "Dog Trust USA members get 10% off every month for life!"; } else if( window.location.search.indexOf("c=cibc") > 0 || window.location.search.indexOf("c=CIBC") > 0) { homeContianer.classList.remove("hidden") homeCopyElement.classList.remove("hidden"); homeCopyElement.textContent = "CIBC customers get 10% off every month for a whole year!"; } else { homeContianer.style.display = 'none' } } bannersUnhide()