Home >
Old But Still EPIC >
Part #4 - The ultimate guide about POP-traffic! (12)
11-28-2016 09:50 PM
#1
mrbraun (Moderator)
Part #4 - The ultimate guide about POP-traffic!
Let's continue with landers.
Dating
If we talk about dating, the best way - to use landers with questions, where people need to answer some questions like (Are you over 18 yo? What type of tits do you prefer? On this site girls want to fast sex, is it ok for you?) - all of these questions make our traffic hot, it's not a random questions. After these questions people will see a button like "Get access". And I have to say that only a small amount of people will answer all questions (about 1-5%), and it's ok! It's a normal CTR for dating vertical.
Example:
This is a typical dating-lander with some questions, and after last one person will see a button to the offer.
What can we see there:
- A nice photo of the girl
- A good text which motivate us
- Questions with buttons
After user clicks "JA" he will see some questions. So this a typical dating-lander and I can say honestly - I use this lander and landers like this. It really works. A can say more: About 80% of landers have similar texts, people change only images!
What works good for dating:
- Photos of the girls. It can be not a nudity, you can use photo like on this lander. And please don't use model's professional photos. People like home non-professions photos, because they make more trust for them. And, of course, you can use not super beautiful girls.
- Animation works good, but not in 100% cases.
- Questions with motivating text. A number of questions is often 4-8, test different variations. For me short pools work better. And questions also need to be motivating like: "On this site girls are ready to have sex on the first date, you'll use a condom?".
- You can also use cartoon photos like on this lander:

Adult
As you can already know Adult-offers promote porn videos using 1click flow. So the best way for this kind of offers to use landers-tubes.
How it looks:
IMAGE
So these landers often contains a lot of images from videos with a "play" button, and people think that it's a real porn tube, and click the image which they like. And as you may think - all links redirect to the offer. All people like different kinds of porn, therefore you have to post a lot of different images (porn screens) on your lander to give our traffic an ability to choose.
Scripts
There are many different scripts which can help you to increase your ROI. But please be careful with them. That is a case when all is not good. You need to make a balance and choose right scripts for your landers.
Alert
This script opens a window before you'll see a lander. You can write a text which people'll see before they'll see a lander. So it can be a very motivating text to make our traffic to read our lander.
Add this before </body> and replace "TEXT":
Code:
<script>
alert("TEXT");
</script>
BackFix
This script don't allow our traffic to get back. When people click a "back" button they will see our lander again or other page which we can write.
Use this code before </body>:
Code:
<script type="text/javascript">
! function () {
var t;
try {
for (t = 0; 10 > t; ++t) history.pushState({}, "", "#");
onpopstate = function (t) {
t.state && location.replace("#")
}
} catch (o) {}
}();
</script>
If you use "location.replace("#")", people will see your lander when they click a "back" button, so they won't leave it (only to close the tab). You can also write a link which people will see. For example "location.replace("http://google.com") - when people click a "back" button they will be redirected to the Google. In this case I recommend to write offer's link or offer's code from your tracker (we'll talk about that soon).
ExitPop
If you use this script, when people try to close the tab they'll see a window with a text. And with this text you can motivate people to stay on the lander and make a lead.
Write it before </body> and replace "TEXT":
Code:
<script type="text/javascript"> var PreventExitPop = true;function ExitPop() {if(PreventExitPop != false) {return "TEXT";}}window.onbeforeunload = ExitPop; </script>
Vibration
This code makes a phone to vibrate, but it works not on the all phones. 50/50
Use this after <body>:
Code:
<script type="text/javascript"> if (window.navigator && window.navigator.vibrate) { navigator.vibrate([50, 30, 100, 30, 100, 30, 100, 30, 100, 30, 100, 30, 100, 30, 100, 30, 100, 30, 100, 30]); } else { navigator.vibrate(0); } </script>
Automatic redirect
If you use this code your visitors will be redirected to the link which you write after time which you want in seconds.
Use it before </head>:
Code:
<meta http-equiv="refresh" content="20; url=http://link"/>
I recommend to set 15-30 sec. It really depends on your lander, you need to test.
A redirect after click on the any place of the screen
Not all people can click the button neatly. So if you use this script, people will be redirected to the link (I use offer's link) when they click on any place of the page.
1. Replace your <body> on the <body onclick="goto()">
2. Use this script before </body>:
Code:
<script language="JavaScript" type="text/javascript"> function goto(){ location.href = "link" } </script>
Timer
1.Use this code in any place of the <body>:
Code:
<script>
var count=30;
var counter=setInterval(timer, 1000);
function timer()
{count=count-1;
if (count <= 0)
{clearInterval(counter);
return;
}document.getElementById("timer").innerHTML=count +" sec.";}
</script>
2. To show the timer write this code in a place where you want to see a timer:
Code:
<span id="timer"></span>
Audio
You can use audio files on your landers (works not on the all phones). I recommend to use some danger-signals for AVs.
1. Download a file on your lander and copy a link
2. Use this code before <body>:
Code:
<audio autoplay="autoplay" preload="">
<source src="http://link" type="audio/mpeg">
</audio>
Display user's data
This script work only with your tracker (we'll talk about that soon).
So to display data you can use this code:
Code:
<script>document.write(getURLParameter("brand"))</script>
Just replace "brand" on the element which you need (you can find all parameters in your tracker).
You can also use this code in your alert:
Code:
alert("Uyarı!\n\nBu sitede " + (getURLParameter('city')) +"'dan sıcak kız seninle seks yapmak istiyorum!");
But for correct working of this code you need to write this code after <body>:
Code:
<script>
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] || ''
);
}
</script>
Display date
Code:
<script type="text/javascript"><!--
var date = new Date();
var d = date.getDate();
var day = (d < 10) ? '0' + d : d;
var m = date.getMonth() + 1;
var month = (m < 10) ? '0' + m : m;
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
document.write(day + "." + month + "." + year);
//--></script>
What script to use?
Of course, you can use any script, but I recommend to follow this order for verticals:
1) AVs:
- Alert
- BackFix
- Automatic Redirect
- Timer
- Vibration
- Audio
- User's data: brand, model, OS, OS's version, County (flag) - it's not necessary to use all of them at once.
2) Sweeps:
- Alert
- ExitPop
- Backfix
- Timer
- User's data: ISP (Carrier), Country, City, Brand, Date and Time (for comments, but please use different dates and time. It's not a goof when all comments have s same time.)
3) Dating:
- Alert
- ExitPop
- Timer (not in 100% cases)
- User's data: City
4) Adult:
Translation of the landing
Working with many countries you will face with a problem: How to translate landers?
There are some ways:
- Google Translate
It's free. I can't say more good words about it. You have to understand that google can't translate like a native speaker. And as you know our lander is our weapon, we need to make it ideal! So therefore for one word or phrase you can use it, but for all text I don't recommend to do that. - OneHourTranslation
I use this service, and all is ok. There are a lot of native speakers who can translate you a lander for about 5-10$. - Fiverr
It's a place where you can order not only a text translating. You can also order audio or video, graphics etc... So it cost less than OHT. - Freelance, Desks, Forums, Friends.
If you have a friend who know a language which you need, you can ask him to translate. Also you can write a post on different forums and ask people to help you. But you have to understand that it won't be a profession translate.
And one last thing: You need to have an English version of your lander. And translate this version on any language which you need. It will be faster and cheaper.
In conclusion
I tried to tell you about landers, but, of course, you may have a lot of questions like: Where I can find landers? How to create my own lander? What is a SPY-Service? We'll talk about that soon in other parts.
Now you need to understand that a landing is your main weapon, and it needs to be ideal! Just optimisation of the LP can give you +150% to the ROI. Therefore please take it seriously.
Next we'll speak about tech stuff (server, domain, CDN). I'm not a tech guy, but I'll try.
11-28-2016 09:58 PM
#2
mrbraun (Moderator)
Part #5: https://stmforum.com/forum/showthrea...ut-POP-traffic!
11-29-2016 01:27 AM
#3
xesturgy (Member)
This is fantastic! Thank you!
11-29-2016 04:24 AM
#4
affpayinggao (Veteran Member)
Amazing. Thank you.
12-12-2016 12:17 PM
#5
cosminbanaurs (Member)
Wow, thanks man!
12-12-2016 01:39 PM
#6
vortex (Senior Moderator)
The "what scripts to use" section is particularly helpful! Thanks for all the insight!
Amy
01-02-2017 11:07 AM
#7
aaart42 (AMC Alumnus)
just read through all of you tutorials - they are absolutely fantastic! Waiting for the next one 
And now I'm going to implement all of your tips. Let's see how it goes.
01-05-2017 11:20 AM
#8
nfnuno (Member)
For me one of the most helpful tutorials I found on STM about POP Traffic . Thank's for this !
02-27-2017 08:26 PM
#9
alexcn (Member)
Epic. Thanks so much for all of this incredible information mrbraun.
02-27-2017 09:00 PM
#10
mrbraun (Moderator)

Originally Posted by
alexcn
Epic. Thanks so much for all of this incredible information mrbraun.
Thank you!
Got some sick, so I'm planning to post last parts in few days! Sorry for the big delay
02-28-2017 02:03 AM
#11
arisisk (Member)
this is it.. wow.. thank you again..
06-24-2018 02:55 PM
#12
yasspro (Member)
thank you so much
Home >
Old But Still EPIC >