I would like to have a secret sale event for email subscribers while encouraging new visitors to subscribe for access. I’ve created the collection and the full page pop up for just that collection, but there's nothing keeping visitors from just x-ing out of the pop up to view/ order from the collection. How can I make the ‘X’ redirect to the home page so that the sale is truly exclusive to subscribers and those who sign up? Additionally, how can I make the ‘X’ in the success pop up direct straight to the secret sale?
Secret Sale Pop Up
Best answer by LautaroNores
To make sure only subscribers get access to your secret sale, you can tweak the 'X' button on your pop-up. When someone clicks 'X', you can redirect them to the home page using a little JavaScript magic. Similarly, for the success pop-up, you can make the 'X' button lead straight to the secret sale page.
Here's how you can do it:
For the 'X' button in the main pop-up:
document.getElementById('popup-close-button').addEventListener('click', function() {
window.location.href = '/';
});
And for the 'X' button in the success pop-up:
document.getElementById('success-popup-close-button').addEventListener('click', function() {
window.location.href = '/secret-sale';
});
Just replace 'popup-close-button'
and 'success-popup-close-button'
with the actual IDs of your close buttons.
Hope this helps!
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.