Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Include Page
Retired Doc Warning
Retired Doc Warning

 


Info

The exit pop is not only available in the StoreFront StoreFronts which are using "Elements" theme at this time. It's only available within the legacy checkout. You can install the elements theme from the themes tab in the storefronts menu.

Please see the following for more details on adding a exit pop model to your storefront: Adding an Exit Intent Modal

(The problem with the exit pop these days is the body.unload fires for far more scenarios than them trying to close the browser (like the back button being used) and there is no way to differentiate the customers action. The feature that we recommend using which is more effective is the return email feature located under Operations Marketing Return Email. )

Introduction

Exit pop allows you to give the customer that attempts to leave the cart an incentive to complete their purchase.

...


Preview Exit Pop: To test and preview your configuration, return to the Exit Pop screen and click the "preview" button to on the right.

 


Frequently Asked Questions:

...

Code Block
languagegroovy
themeDJango
linenumberstrue
function exitPopOnLoad(ev) {
noCouponPop = false;
}
if (window.attachEvent) {
window.attachEvent('onload', exitPopOnLoad);
} else {
if (window.onload) {
var currentOnLoad = window.onload;
window.onload = function () {
currentOnLoad();
exitPopOnLoad();
};
} else {
window.onload = exitPopOnLoad;
}
}

...


Question: 
I'm not seeing the Exit Pop display and I'm sure that I have removed all cookies form my browser?

...

Answer:
The exit pop is only able to key off a single JavaScript event which can be triggered inadvertently in some of these more dynamic pages. The two are incompatible. I would recommend turning off the exit pop and using the return email feature instead (it's more effective anyways) and keeping Amazon Payments.