hey ppl

Currently i m using Google adsense to put up Advertises on my site. Now i wanted to knw whether it is fine to use more than one Avdertisers to put up Ads on my site. That is can i approach another Ad provider.

is it allowed or legal to do so.

Bye

Dani AI

Generated

raised a common question about running multiple ad providers on one site. The thread shows mixed experiences — flagged compatibility/terms concerns and noted a working real-world setup — so the practical answer depends less on a single law and more on contract, policy, and implementation details.

Checklist for safe deployment:

  • Review each ad network's publisher agreement for exclusivity, placement limits, or code-modification rules.
  • Check applicable disclosure requirements for paid or sponsored placements under local advertising law.
  • Keep ad tags unaltered unless a network explicitly permits changes; altering vendor code can violate terms or break reporting.
  • Isolate ad containers (separate DOM elements) and load third-party scripts asynchronously to avoid script conflicts and page slowdowns.
  • Monitor analytics for accidental-click patterns and revenue changes after adding a new network.

Quick technical pattern (asynchronous loader to reduce collisions):

<script>
(function(d,s,src){
  var js = d.createElement(s);
  js.src = src;
  js.async = true;
  d.head.appendChild(js);
})(document,'script','https://example-ad-network.com/tag.js');
</script>

Operational tips: stage new networks on a test page, run A/B comparisons, and keep a small sample window before full rollout. If anything in a network's terms is unclear, contact that network's publisher support for a written clarification.

Recommended Answers

All 3 Replies

You can put other ads up on your site, but not ads that are similar / competing with Google AdSense. For example, you can't use the Yahoo! Publisher Network or Clicksor or some other type of text ad that looks just like AdSense.

Is that true?

My brother has been running Google and Clicksor on his site for almost two years now. :-O

Hey Dean
that means v can approach more than one compant .... correct ?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.