What I'd like is to eliminate the 'bounce' onwards from the PSP Bounce page, so users can finish reading the blurb I'm going to put on this page and then click the 'Next' button.
I have managed to increase the bounce delay to 'very large' by modifying this statement with the setTimeout parameter, but it's not very neat and I'd rather remove the bounce rather than fudge it this way - any ideas anyone?
BTW - I already have the Design Options|Page Bounce Delay set to zero and this works fine for the View Cart page, but doesn't affect the PSP Bounce.
Thanks IA
I have managed to increase the bounce delay to 'very large' by modifying this statement with the setTimeout parameter, but it's not very neat and I'd rather remove the bounce rather than fudge it this way - any ideas anyone?
Code:
<actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%27PSP%20Bounce%20Page%27%29%20AND%20%28%3cactinic%3avariable%20name%3d%22IsPSPTestMode%22%20%2f%3e%20%3d%3d%20false%29" > <script language="JavaScript" type="text/javascript"> <!-- function onLoad() { setTimeout("document.formOCC.submit();", 100000) } // --> </script> </actinic:block>
Thanks IA
Comment