Announcement

Collapse
No announcement yet.

Where to edit the speed of bounce for the secure payment section

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Where to edit the speed of bounce for the secure payment section

    Hi,

    I have searched and read posts regarding where i can find out how to edit and subsequently slow down the pace at which Actinic sends the user to the relevant payment method.

    With me it appears that for about half a second a line appears informing the visitor they are going to secure payment page. How can i delay this, so that its actually visible to read the message and also is there a way to remove this all together.

    Please note i am not referring to the 5 second Checkout bounce, at the start of a transaction, but that nearer to the end.

    Kind Regards

    Zahir
    UK Mobile Phone Accessories

    #2
    Hi Zahir

    I'm afraid it's not possible to completely remove the PSP bounce page, but you can slow it down with a small change. Please see if what I've attached below helps.
    ____________

    In your design tab select the page type "PSP Bounce Page". Search for:

    document.formOCC.submit();

    and replace the surrounding code with:


    <script language="JavaScript" type="text/javascript">
    <!--
    function onLoad()
    {
    setTimeout("document.formOCC.submit();", 10)
    }
    // -->
    </script>

    ____________
    Kiran Chandran
    Technical Support - SellerDeck
    http://www.sellerdeck.co.uk/

    Further help can also be found at http://community.sellerdeck.com/forumdisplay.php?f=27

    Comment

    Working...
    X