Announcement

Collapse
No announcement yet.

Bounce Page

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

    Bounce Page

    Hi
    I am trying to locate the source html that is used by the PSP Bounce Page. Secure Trading are my PSP and I am trying to trap everything that inititates the transfer plus the values that are passed. Im hoping the source html will give me a clue unless anyone else can advise a better way.
    Thanks
    K

    #2
    The Bounce page HTML can be seen by going to Design view and selecting Page Type of Bounce Page. I don't think it will help you though.

    What is the problem with the Secure Trading PSP interface?

    Comment


      #3
      Hi Duncan
      Thanks for the response. I had tried the design panel but I think there is plenty of code that might be hidden behind the scenes.
      The problem I have is all around Google Analytics (cue scream!). Everything is being tracked beautifully except that sales are being tracked as a referral from secure.trading.net rather than their genuine, initial source such as google(cpc) or google (organic).
      If its any help, my Google Analytics Tracking Code is below
      Code:
            <script type="text/javascript">
                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga" + "." + "js' type='text/javascript'%3E%3C/script%3E"));
      		</script>
            <script type="text/javascript">
            if (typeof(_gat) == 'object')
                {
                var pageTracker = _gat._getTracker("<actinic:variable name="GoogleAnalyticsNumber" />");
                pageTracker._initData();
                pageTracker._trackPageview(<actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%200%22" >"/Order00.html"</actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%201%22" >"/Checkout Page 1.html"</actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%202%22" >"/Checkout Page 2.html"</actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22PSP%20Bounce%20Page%22" >"/PSP Bounce Page.html"</actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Receipt%22">"/receipt.html"</actinic:block>);
      			 }
            </script>

      Comment

      Working...
      X