Announcement

Collapse
No announcement yet.

Bounce delay on transfer to CVS

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

    Bounce delay on transfer to CVS

    When transferring to (ProtX) CVS server, there's a transfer page (Act_OCCPROTXTemplate.html) which appears on-screen for a few seconds before the user is bounced to the ProtX server. Unfortunately the bounce is too quick - is there any way of adding a longer delay here?

    Note this page is NOT controlled by the global bounce delay which you can set in Design / Options / Shop Defaults.

    Thanks!

    Richard

    #2
    Hi Richard,

    I'm not sure if you can do this, but i have asked the development team to see if this can be done, or if its a wishlist item.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Hi Richard,

      Just got the following information
      Design | Text 2079 defines the Java Script onLoad function which submits
      the Protx form to protx.

      Replace the text with...

      Code:
      <SCRIPT LANGUAGE="JavaScript">
      <!-- 
      function onLoad()
      {
      setTimeout("document.%s.submit()", 10000)
      }
      // -->
      </SCRIPT>
      The above will cause a 10 second delay (10 * 1000 milli seconds) adjust
      for a different delay. e.g. replace 10000 with 5000 for a 5 second delay.

      Kind Regards
      Nadeem Rasool
      SellerDeck Development

      Comment


        #4
        Thanks Nadeem, that seems to have done the trick!

        Richard

        Comment

        Working...
        X