How do you get around ad blockers?

Bill Wilson

Newbie
Joined
Jan 21, 2018
Messages
30
Reaction score
6
Hi All,

I am new to internet marketing and I decided to start with porn as it is something that's always going to be on demand so here's what I've done:

I have built three porn sites to start with and they all have chaturbate banners embedded with my affiliate links. I'm driving traffic through the porn re-uploading method and have been getting about 1000 visitors per day but with a low conversion rate. This week I have received over 6000 visitors and only 3 took action so I began to wonder if there might be a better way to set things up.

One of my sites is set-up to redirect to chaturbate and I believe that's when the conversion took place as I doubt people are clicking on my ads. I've added pop under ads using popcash.net but with so many people using ad blockers, I feel as though my efforts to monitize my sites are futile.

So my question is, how do you get around ad blockers and if there are any adult webmaster's on here, can you make any suggestions on how I can increase my conversion rate?

Thanks,

Bill
 
you can try anti adblock pop networks: popads, hilltop hits, adsterra.

For chaturbate you can make a GIF > create a redirect page to ur chaturbate aff > add your redirect page to GIF, that may trigger adblocker and actually bypass it.
 
you can try anti adblock pop networks: popads, hilltop hits, adsterra.

For chaturbate you can make a GIF > create a redirect page to ur chaturbate aff > add your redirect page to GIF, that may trigger adblocker and actually bypass it.
I checked out those anti adblock networks and all they do is as the user for permission to turn off their adblock and I highly doubt that that's gonna work, especially when it comes to porn but a GIF sounds like a good idea, will look into that!
 
I checked out those anti adblock networks and all they do is as the user for permission to turn off their adblock and I highly doubt that that's gonna work, especially when it comes to porn but a GIF sounds like a good idea, will look into that!

no, they have highly obfuscated code that can actually bypass adblocker. try it yourself
 
no, they have highly obfuscated code that can actually bypass adblocker. try it yourself
Ok, well I am currently using popcash and the ads only work on my browser's that don't have ad blocker. I'm waiting for my popads account to be approved and I'll check on the other networks you mentioned.
 
How do you know it's real users that visit your site? You know, around 60-70% of all internet traffic today are bots...
 
How do you know it's real users that visit your site? You know, around 60-70% of all internet traffic today are bots...
I was not aware of that. As I mentioned at the top of my post, I am a newb and I am looking to learn, do you have any recommendations?
 
I was not aware of that. As I mentioned at the top of my post, I am a newb and I am looking to learn, do you have any recommendations?

You are the second one having this problem this week so don't worry, you are not the only one. The only solution is to block as many bots as possible with a basic PHP-script.

I understand that this can be hard if one doesn't know PHP so I will soon upload a script on this forum. Keep your eyes open for new "give aways" ;)
 
You are the second one having this problem this week so don't worry, you are not the only one. The only solution is to block as many bots as possible with a basic PHP-script.

I understand that this can be hard if one doesn't know PHP so I will soon upload a script on this forum. Keep your eyes open for new "give aways" ;)
Ok, thanks. Do you have a get around for ad blocks as well?
 
Ok, thanks. Do you have a get around for ad blocks as well?

Many pornsites place an invicible layer over the whole website. When a user click somewhere it's on the layer and a pop-up window open. If JavaScript is disabled the layer wont disapear and the user's only open is to turn it on or leave the site.
 
Many pornsites place an invicible layer over the whole website. When a user click somewhere it's on the layer and a pop-up window open. If JavaScript is disabled the layer wont disapear and the user's only open is to turn it on or leave the site.
How do I get this invisible layer???
 
How do I get this invisible layer???

HTML:
<div id="layer" onclick="remove()"></div>

CSS:
#layer {
position:absolute;
width:100%;
height:100%;
opacity: 0;
z-index:999;
}

JavaScript:

function remove() {
document.getElementById("layer").remove();
window.open("https://www.popup.com");
}

Something like that...
 
HTML:
<div id="layer" onclick="remove()"></div>

CSS:
#layer {
position:absolute;
width:100%;
height:100%;
opacity: 0;
z-index:999;
}

JavaScript:

function remove() {
document.getElementById("layer").remove();
window.open("https://www.popup.com");
}

Something like that...
Ok, I know where the CSS code goes but where do I put the HTML and the javascript? Do I put them inside my <body> tags or <head> tags? I'm using wordpress...
 
Ok, I know where the CSS code goes but where do I put the HTML and the javascript? Do I put them inside my <body> tags or <head> tags? I'm using wordpress...

HTML inside 'body' and JavaScript as last item before </body> in script-tags:

[…]
<script>
Code here...
</script>
</body>
 
HTML inside 'body' and JavaScript as last item before </body> in script-tags:

[…]
<script>
Code here...
</script>
</body>
Thanks, will try it now and see if it works!
 
Back
Top