How to put AdSense ads in BuySellAds without iframe?

Hi, I noticed that your site serves AdSense ads through BuySellAds and it is not in an iframe.

By default, BuySellAds puts the backfill ads in an iframe. Puting AdSense ads in iframe is violation of the terms.

How do you make BuySellAds not put AdSense ads in an iframe? Thanks!

To inline the ads code of BuySellAds backfill ads:

It’s simple, set the first line of your backfilled ad within BuySellAds to include this snippet of code (right at the top):

<!--INLINE-->

Reference: How can I load my backfilled ad tags inline on the page so that they aren’t put within an iFrame? (archived version, please check latest info from BSA)

Answered by David Yang.

Similar Posts

  • |

    git push error

    $ git push error: The requested URL returned error: 403 Forbidden while accessing https://github.com/HarryWei/hummer.git/info/refs fatal: HTTP request failed Replace (or add) url=ssh://git@github.com/HarryWei/hummer.git with url=https://git@github.com/HarryWei/hummer.git under “[remote “origin”]” section in ~/.gitconfig file. Reference:http://stackoverflow.com/questions/7438313/pushing-to-git-returning-error-code-403-fatal-http-request-failed Read more: Git push error under CENTOS 6.7 Push and Pull data from Restful Service in Asp.net MVC Application using Angular JS Fixing…

  • How to install Scala from the official Scala distribution

    How to install Scala from the official Scala distribution? This is needed on a Linux release with older version of Scala in the repository, e.g. Fedora 12. Use the install-scala.sh script: # wget https://raw2.github.com/zma/usefulscripts/master/script/install-scala.sh # sh ./install-scala.sh VER where VER is the scala version that you want to install. First step, install and configure the…

  • How to dd on Windows?

    dd is a handy tool on Linux. But is it possible to run it on Windows? I find the dd in cygwin works very well for me. It provides as almost (if not the same) functions as the dd on Linux. The disks are specified in /dev/ as on Linux. This solution means: you need…

  • How to get the metadata of an AWS S3 object?

    I upload files using the aws cli http://www.systutorials.com/239665/uploading-large-files-amazon-s3-aws-cli/ . But how to get the metadata of an object in AWS S3? You can use the s3api‘s head-object command to get the metadata of an object. Taking one example: $ aws s3api head-object –bucket test-hkust –key dir2/fileupload/fb0c6353-a90c-4522-9355-7cd16cf756ff.file.txt It will print results like { “AcceptRanges”: “bytes”, “ContentType”:…

  • Alternatives to goto in bash

    As we know: There is no goto statement support in bash. goto is useful for certain situations, especially for debugging. So, is there any alternative mechanisms to goto in bash? Robert Copeland gave an interesting hacking to this problem: http://bobcopeland.com/blog/2012/10/goto-in-bash/ The idea is like the self-modifying code. But the difference is to generate a piece…

Leave a Reply

Your email address will not be published. Required fields are marked *