Forum Moderators: martinibuster
If Google were concerned that it drew undue attention, under their new stricter approach, they'd have removed that option, wouldn't they?
I think the idea behind it is to combat ad blindness, and I can imagine it might be effective on a site where visitors tend to view several pages. I've tried it and NOT found it to be effective, but I don't think it draws undue attention...
I get the code for each link unit (making sure I assign at least one unique channel to each), and paste it into four separate files:
greenlinks.php
redlinks.php
bluelinks.php
purplelinks.php
Then I paste this code (or put it in a file and include it) where I want my links to go:
<%$x = rand(1,4);
switch($x) {case 1:
include $_SERVER['DOCUMENT_ROOT']."/redlinks.php";
break;case 2:
include $_SERVER['DOCUMENT_ROOT']."/bluelinks.php";
break;case 3:
include $_SERVER['DOCUMENT_ROOT']."/greenlinks.php";
break;case 4:
include $_SERVER['DOCUMENT_ROOT']."/purplelinks.php";
break;}
%>
This will serve up the four colors pretty much evenly, and after a while you can run a channel report and see which seem to be working best. For me, red and blue are always winners, purple is kinda so-so, and for some reason, nobody likes green on my site.