Hi guys, I'm thinking about implementing adsense after the 1st post on everypage of a thread (10 posts per page), I have three questions, have the people that placed adsense here experieced positive CTR and revenue increases compared to other locations on their forums. I know specifics isn't allowed but general - very good, excellent, poor or general CTR ranges is ok. This board is an example of a board that uses it. http://www.daniweb.com/techtalkforums/thread12725.html
I at the moment have my ads near the bottom of the page, but ctr is generally below the half percent mark and not making much really.
Question 2 - I got the code below from the daniweb forum and added a bit of stlying in myself however it only works on the first page, that means if a thread spans 2 or more pages, the ads still get placed only on the first page. I tried using <if condition="$post[postcount]==1 || 11 || 21 || 31">
and thought this would work if ten posts per page were displayed but it went all weird, any good at conditionals here?
Question 3 - I installed the mod_rewrite (available from that link I gave above) hack the day before yesterday, what is people experience with this, has it been helpful. I know vb gets spidered by default well enough but keywords in the filenames should really help right? Anyone use this before. I guess it will also help zone in on very targetted adsense ads too. I know I ask many questions but any answers are much appreciated. Thanks for your replies.
-- Dave
I at the moment have my ads near the bottom of the page, but ctr is generally below the half percent mark and not making much really.
Question 2 - I got the code below from the daniweb forum and added a bit of stlying in myself however it only works on the first page, that means if a thread spans 2 or more pages, the ads still get placed only on the first page. I tried using <if condition="$post[postcount]==1 || 11 || 21 || 31">
and thought this would work if ten posts per page were displayed but it went all weird, any good at conditionals here?
Code:
<if condition="$post[postcount]==1"> <!-- text advertising --> <br> <div align="center" class="smallfont"> <table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%"> <tbody><tr> <td class="tcat" align='left'>Relevant Advertisements</td></tr> <tr><td bgcolor="#F8F8F8" align='center'><script type="text/javascript"><!-- google_ad_client = "pub-************"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_channel ="8546929806"; google_color_border = "F8F8F8"; google_color_bg = "F8F8F8"; google_color_link = "22229C"; google_color_url = "22229C"; google_color_text = "22229C"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></td> </tr></tbody></table> </div> <BR> <!-- / text advertising --> </if>
-- Dave
Comment