What is the process to setup 50% adsense revenue to the users in my SMForum http://www.findallinone.com/forums/ ?
I am not sure but I thing you need to have certain amount of traffic to be qualified. I am also wondering myself how it really works.
alpalino did u read what he posted ? he's asking how to add the 50% revenue sharing in his forum .... so the answer would be to find the script to do so ... http://www.simplemachines.org/community/index.php?topic=94188.0 i dont know if its done or not yet ...
I wonder.. if you set it up so that if the user doesn't have their adsense code in there the creator of the plugin's ads shows up 50% of the time if that would violate the TOS. I might consider writing a plugin for it if that'd be legal =)
Isn't he asking for revenue sharing as Digital Point does? Can you do that with any forum, eventhough you have low traffic?
well some people do it but they do ask the publisher permission like the adsense deluxe plugin in wordpress they ask if u want the coder to receive 5% impression if he accept he have to click on a box . i dont see why it would be illegal .
Well you could just put it in the terms that if you want to use the plugin you agree to have the plugin creator's ads show up 10% of the time or whatever.
I wolud like to give 50% adsense revenue to the users in my SMForum http://www.findallinone.com/forums/ like digital point gives to the members.What is the code for it? How to place code? What is the total process for it that shuold i take permission from google or can i place code directly?
I don't know of a mod that will let you do that. You might have to write your own or extend the Ad Management mod.
You could use the script I use for A/B split testing which shows one add 50% of the time and the other add 50% of the time using a random math generater. Just swap out the parts of my google add code for the two google adds you are going to use. Hope this is useful. <script type="text/javascript"> <!-- var random_number = Math.random(); if (random_number < .5){ google_ad_client = "pub-XXXXXXXXXXXXX"; google_alternate_ad_url = "xxxxxxxxxxxxxxx"; google_ad_width = 300; google_ad_height = 250; google_ad_format = "300x250_as"; google_ad_type = "text_image"; //2007-02-12: 300x250LDDBlue google_ad_channel = "xxxxxxxxxxxxxxx"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000060"; google_color_url = "000060"; } else { google_ad_client = "pub-xxxxxxxxxxxxxxxx"; google_alternate_ad_url = "xxxxxxxxxxxxxxxxxxxxxx"; google_ad_width = 300; google_ad_height = 250; google_ad_format = "300x250_as"; google_ad_type = "text_image"; //2007-02-12: 300x250LDLBlue google_ad_channel = "xxxxxxxxxxxxxxxxxxx"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000060"; google_color_url = "0000FF"; } //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>