Can Anyone Help Me w/ Leadimpact Dilemma?

10 replies
Hi guys,

I had a question for those of you who uses Leadimpact.

Okay, so i noticed that the landing page size should be 775x400...

But i was wondering... once someone clicks on the link on our landing page, should we make sure that the link "opens in new window"?

I ask this because i noticed that when someone clicks the link on our ppv landing page, the window size still remained 775x400, even after being directed to our affiliate offer... only until they manually maximized the window is when they will have full few of our affiliate offer...

Will this affect conversions? Let me know your thoughts, and what you guys would normally do?

Do you have your clickable link set as normal, or do you have it "open in new window"? Let me know your thoughts!

Thanks!
#cpa #dilemma #leadimpact #ppv #w or
  • {{ DiscussionBoard.errors[7713456].message }}
    • Profile picture of the author coloma21
      Thanks for the awsome response greedy... That helped big time...

      but one last thing, since i already included the script that makes my clickable link "open a new window", i dont think i would need to include the script on step 8??

      I tested the click, and it seems that once someone clicks on the landing page, it will automatically open the offer in a new window that's full blown...

      Let me know your thoughts...




      Originally Posted by Greedy View Post

      Step 8...

      The $1,000 PPV Marketing Checklist | Greed Reports

      You can do a new window if you want.
      {{ DiscussionBoard.errors[7713714].message }}
  • Profile picture of the author Greedy
    but one last thing, since i already included the script that makes my clickable link "open a new window", i dont think i would need to include the script on step 8??
    Well. I'm not sure what type of script your are using to open the link. If you are using the standard target="_blank" then lots of times it doesn't resize the window.

    What is your script? I can check it out and tell.
    {{ DiscussionBoard.errors[7715323].message }}
    • Profile picture of the author coloma21
      Oh really?...... yea i'm using the target="_blank", so i guess i must use step 8 haha...

      In regards to step 8, where am i suppose to enter the script you provided? I've set up a simple landing page, and using prosper202..

      Do i insert it in the index.php or the /offer.php file? Sorry, i'm such a newbie when it comes to html, etc....




      Originally Posted by Greedy View Post

      Well. I'm not sure what type of script your are using to open the link. If you are using the standard target="_blank" then lots of times it doesn't resize the window.

      What is your script? I can check it out and tell.
      {{ DiscussionBoard.errors[7715713].message }}
    • Profile picture of the author thisisraz65
      Originally Posted by Greedy View Post

      Well. I'm not sure what type of script your are using to open the link. If you are using the standard target="_blank" then lots of times it doesn't resize the window.

      What is your script? I can check it out and tell.
      Is it perfect code for redirect page with bebo media.....
      <html>

      <head>
      <script language="JavaScript">
      window.onload = maxWindow;
      function maxWindow()
      {
      window.moveTo(0,0);
      if (document.all)
      {
      top.window.resizeTo(screen.availWidth,screen.avail Height);
      }
      else if (document.layers||document.getElementById)
      {
      if (top.window.outerHeight<screen.availHeight||top.wi ndow.outerWidth<screen.availWidth)
      {
      top.window.outerHeight = screen.availHeight;
      top.window.outerWidth = screen.availWidth;
      }
      }
      }
      </script>
      </head>
      <body><?php
      header('Location: https://www.bevomedia.com/offer_redirect/redirect/user/tuttu/trackingCode/blabla/rotator/whoare/subId/'.$_COOKIE['bevo_sid'].'-knownthing');?></body>

      </html>
      Signature
      No signature right now
      {{ DiscussionBoard.errors[8199443].message }}
  • Profile picture of the author ChrisBa
    Originally Posted by coloma21 View Post

    Hi guys,

    I had a question for those of you who uses Leadimpact.

    Okay, so i noticed that the landing page size should be 775x400...

    But i was wondering... once someone clicks on the link on our landing page, should we make sure that the link "opens in new window"?

    I ask this because i noticed that when someone clicks the link on our ppv landing page, the window size still remained 775x400, even after being directed to our affiliate offer... only until they manually maximized the window is when they will have full few of our affiliate offer...

    Will this affect conversions? Let me know your thoughts, and what you guys would normally do?

    Do you have your clickable link set as normal, or do you have it "open in new window"? Let me know your thoughts!

    Thanks!
    This is normal, this is how the ppv systems are designed, your only option is to either resize your landing page, have the link to the offer open in a new window, or use sneaky javascript to resize the window when your landing page loads
    {{ DiscussionBoard.errors[7715610].message }}
  • Profile picture of the author Greedy
    Do you mean Bevo Media?

    And if so I've never used Bevo Media.

    All you need to do is make your IE window smaller and test it.
    {{ DiscussionBoard.errors[8199771].message }}
  • Profile picture of the author junkdna
    I implemented Greedy's excellent script (thanks). But I have a strange situation. If I load my lander directly, from URL, when I click on the button I am taken to merchant's site and window gets maximized.

    But, if the same page loads through LeadImpact's pop-up and I click on the button there, than new window opens, but it shows blank page and window doesn't maximize. Actually, outgoing parameters for Prosper202 disappear and there is only one 'null' parameter. Is LeadImpact actively preventing maximizing of the window?

    Additionally, extreme pain in the neck comes from the fact that LeadImpact shows my lander only once per day, so I need to wait 24 hours before being able to correct this.

    Has anybody been successful combining LeadImpact, Prosper202 and Greedy's window maximizing script?
    Signature

    Guys With Brains Work for Guys With Balls. Guys With Balls Work for Luck.

    {{ DiscussionBoard.errors[8217464].message }}
    • Profile picture of the author typoo999
      Originally Posted by junkdna View Post

      I implemented Greedy's excellent script (thanks). But I have a strange situation. If I load my lander directly, from URL, when I click on the button I am taken to merchant's site and window gets maximized.

      But, if the same page loads through LeadImpact's pop-up and I click on the button there, than new window opens, but it shows blank page and window doesn't maximize. Actually, outgoing parameters for Prosper202 disappear and there is only one 'null' parameter. Is LeadImpact actively preventing maximizing of the window?

      Additionally, extreme pain in the neck comes from the fact that LeadImpact shows my lander only once per day, so I need to wait 24 hours before being able to correct this.

      Has anybody been successful combining LeadImpact, Prosper202 and Greedy's window maximizing script?
      I do this when I use a PHP redirector given by my tracker (Bevo Media):

      Hyperlink your landing page to "goto.HTML" first in this HTML file, use this script below (Greedy's script, with a little modification):

      Code:
      <script language="JavaScript">
      
      window.onload = maxWindow;
       
      function maxWindow()
      {
      window.moveTo(0,0);
       
       
      if (document.all)
      {
        top.window.resizeTo(screen.availWidth,screen.availHeight);
      }
       
      else if (document.layers||document.getElementById)
      {
        if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
        {
          top.window.outerHeight = screen.availHeight;
          top.window.outerWidth = screen.availWidth;
        }
      }
      window.location = "go.php"
      }
      
      </script>
      It will maximize the window and redirect to the REAL redirector file ("go.php") which will redirect to the actual offer. You use 2 redirectors, the first one is a javascript redirector + window resizer, the second redirector is the given PHP redirector that your tracker uses. This way you won't lose keyword details and the window will be resized after CT on your LP.
      Signature
      Boom shakalaka!
      {{ DiscussionBoard.errors[8217500].message }}
      • Profile picture of the author junkdna
        @typoo999 Thanks!

        Do you loose Prosper202's parameters with two consecutive redirects?
        Signature

        Guys With Brains Work for Guys With Balls. Guys With Balls Work for Luck.

        {{ DiscussionBoard.errors[8217887].message }}

Trending Topics