belostotsky

Custom Thank you for order (WIX)

Nov 24th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. var PAGE_ID = "c1x9v";
  3.  
  4. // Add handler for Ecwid's OnPageLoad event
  5. if (
  6.   typeof(Ecwid) == 'object'
  7.   && typeof(Ecwid.OnPageLoad) == 'object'
  8. ) {
  9.   Ecwid.OnPageLoad.add(function(page) {
  10.     // Redirect user if needed
  11.     if (
  12.       typeof(page) == 'object'
  13.       && 'ORDER_CONFIRMATION' == page.type
  14.     ) {
  15.       Wix.navigateToPage(PAGE_ID);
  16.     }
  17.   });
  18. }
  19. </script>
Add Comment
Please, Sign In to add comment