Home > POP / PPV / Redirect >

Pop-Under your own pop-up! (9)


09-21-2015 04:01 PM #1 marketdot ()
Pop-Under your own pop-up!

Hey -
/
Ive seen it quite a-lot recently people having a pop-under on there own pop-ups, Does anyone know how to do this?


09-22-2015 08:07 AM #2 sebastian_r (Member)

Thanks for the idea.

Gave this to my developer, currently the pop-under gets detected/blocked by the browsers. will send you the script once this bug is solved.


09-22-2015 08:10 AM #3 peterpan (Member)

Quote Originally Posted by sebastian_r View Post
Thanks for the idea.

Gave this to my developer, currently the pop-under gets detected/blocked by the browsers. will send you the script once this bug is solved.
Sebastian, would it be possible for me to receive it as well?


09-22-2015 11:03 AM #4 mfrezz (Member)

If you meant a new popunder after clicking to CTA button, here you go:

<script>
function redirect_function(){
location.href="your_tracking_link_for_main_offer";
}
</script>

<a href="your_popunder_link.php" target="_blank" onclick="redirect_function()">Call to action</a>
Or you can also try to open a new popunder right after loading your main lp:

<script type="text/javascript">
function poponload()
{
testwindow = window.open("your_popunder_link.php");
testwindow.moveTo(0, 0);
}
</script>

<body onload="javascript: poponload()">


10-07-2015 01:54 PM #5 andy_d (Veteran Member)

Most browsers will block a spawned pop up without user interaction.. Even with user interaction they may still block it..

Best to try adding it to the CTA if anything or to some user action like a click, though, you may just lower the success of the main campaign.


10-12-2015 09:35 AM #6 balint (Member)

Yeah, the second one gets blocked as Andy said.

For me this brings up the popunder as the main tab, and the main offer page as popunder (loading first).
Although I can just change the two links, I think it may be bad for the speed, as the main offer page starts to load second.
Probably someone who is more tech savvy could help here out.

Quote Originally Posted by mfrezz View Post
<script>
function redirect_function(){
location.href="your_tracking_link_for_main_offer";
}
</script>

<a href="your_popunder_link.php" target="_blank" onclick="redirect_function()">Call to action</a>


05-31-2016 10:49 AM #7 pandabear (Member)

Quote Originally Posted by marketdot View Post
Hey -
/
Ive seen it quite a-lot recently people having a pop-under on there own pop-ups, Does anyone know how to do this?
Where did you see this and what was the flow? Implementation is relatively easy, but triggering user interaction and not destroying the original ad is tricky.


06-20-2020 02:11 AM #8 bennimen ()

Sorry to bump an old thread, but thought I'd add my two cents.

I've tested this on a few campaigns and so far, it's only brought my conversion rate down in the long run. It seems like it disrupts the flow.

Of course, you should always test.


06-22-2020 12:30 PM #9 matuloo (Legendary Moderator)

Quote Originally Posted by bennimen View Post
Sorry to bump an old thread, but thought I'd add my two cents.

I've tested this on a few campaigns and so far, it's only brought my conversion rate down in the long run. It seems like it disrupts the flow.

Of course, you should always test.
Yup, anything you add to a funnel will have some sort of influence... if it's something annoying, like a pop, chances are it will decrease the final CVR.

But, I've tested this a lot in some cases, I made more $$ by utilizing a popunder... many users don't even notice when a popunder opens, then discover it later on and some click and subscribe.

In the end its like you said... every case is different and only a real test will show whether it's worth it or not


Home > POP / PPV / Redirect >