Forum Moderators: martinibuster

Message Too Old, No Replies

Is showing ads to Adblock users legal?

         

leebow

7:34 pm on May 13, 2021 (gmt 0)

10+ Year Member Top Contributors Of The Month



Hi all,

Instead of a page-blocking: “Adblock user! Turn off your Adblock” style lightbox window.

Is it legal to just fill the ad spaces with my own ads?

I didn’t know if legally you were allowed to show ads if the user was using an ad block to remove ads.

I’m doing an:
if (google script is blocked) then
// Show my own adds
End if

Any problem with this?

Cheers.

JorgeV

9:04 pm on May 13, 2021 (gmt 0)

WebmasterWorld Senior Member 5+ Year Member Top Contributors Of The Month



Hello,

Any problem with this?

You risk up to $20 millions and 10 years of jail.

lammert

9:05 pm on May 13, 2021 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Yes. If the site is your property, you can do with it what you want, as long as you adhere to laws regarding third party cookies etc.

The downside is that visitors intentionally blocking ads are probably not going to click on the ads anyway, but CPM ads might give some supplemental revenue.

leebow

9:11 pm on May 13, 2021 (gmt 0)

10+ Year Member Top Contributors Of The Month



Cheers.

I’m sure I remember vaguely if a person blocked ads - you weren’t allowed to force them to see them.

But when I tried to look into it today. I couldn’t find anything.

NickMNS

9:48 pm on May 13, 2021 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I’m sure I remember vaguely if a person blocked ads - you weren’t allowed to force them to see them.

That depends what you mean by "force them".

@Lammert correctly points out that it is your website and you can show what you want on it. That is the user makes a request to your server and you send back a response that includes content and ads. Once received the user has the right to do what he/she likes with the content received, display it in the browser, or block some content such that it is not seen. If you introduce code into your website that programatically forces the browser to display ads then that may be flagged as malware, and could be a "illegal" in some jurisdictions.

But, you can "force" the user into seeing ads by tricking their ad blocking script. You have no obligation to declare ads (in your code) as "ad" or have script called "show ads". Typically ad blockers use such naive clues to identify what is or isn't ads, they also look for requests to known ad serving/tracking domains, like to Adsense or whatever, so you could potentially proxy those request to an obfuscating endpoint, or really do whatever imaginative thing to trick the ad-blocking scripts, and that would not be "illegal".

But all that would require a considerable amount of effort and cost. Again as @Lammert points out:
visitors intentionally blocking ads are probably not going to click on the ads anyway

So you'll spend time and resource for very little return.

You could likely ad some kind of background ad or image that is revealed when no ad is loaded. It would likely require little effort but I doubt it would be effective.

The best strategy would be to add a pop-up when an ad-blocker is detected, asking the user to whitelist your website in their ad-blocker. Personally I hate it when these pop-ups are shown immediately on page load, but you could delay it for some time, giving the user the opportunity to consume some content. Then they could decide "yes this good stuff I wouldn't mind seeing ads in exchange for the value provided" or "no this site sucks, ads will only make it worse". The user that accepts the ads is more likely to click on those ads.

lucy24

9:51 pm on May 13, 2021 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Your own ads are almost certainly far less annoying than the ads which prompted people to install an ad blocker. So at worst they will be met with mild irritation; I don't expect people to depart in droves. Putter around this site--though probably not right here in the Adsense subforum--and you will find discussions of the pros and cons of running your own independent ads.

Legal? Seriously?

leebow

10:10 pm on May 13, 2021 (gmt 0)

10+ Year Member Top Contributors Of The Month



Thanks for replies all. Really appreciate the in-depth reply Nick.

I’m showing static images trying to promote our premium service offering - so not cpm, or random ads - just purely trying to show what our premium service can offer users.

Thanks again for putting my mind at ease.