Get better CTR with VBulletin Forums

Discussion in 'Reporting & Stats' started by freshprince, Aug 8, 2005.

  1. #1
    Here is some code that you can put in your POSTBIT or POSTBIT LEGACY template (whichever you use) that will display ad's after the 1st post and then after every 5th post..
    This code works great for VBulletin forums

    Just go to posbit or postbit_legacy template and at the very bottom add the following code. Then insert your adsense code in area reserved for the code..
    save and thats it.. Your CTR should get alot better.

    <if condition="$post[postcount] % 6 == 0">
    
    $spacer_open
    <div style="padding:0px 0px $stylevar[cellpadding]px 0px">
    
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
    	<td class="thead" align="left">AD'S BY GOOGLE</td>
    </tr>
    <tr>
    	<td class="alt1" align="center">
    		PLACE ADSENSE CODE HERE
    
    	</td>
    </tr>
    </table>
    
    </div>
    $spacer_close
    
    </if>
    
    
    
    <if condition="$post[postcount] == 1">
    
    $spacer_open
    <div style="padding:0px 0px $stylevar[cellpadding]px 0px">
    
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
    	<td class="thead" align="left">AD'S BY GOOGLE</td>
    </tr>
    <tr>
    	<td class="alt1" align="center">
    		PLACE ADSENSE CODE HERE
    	</td>
    </tr>
    </table>
    
    </div>
    $spacer_close
    
    </if>
    Code (markup):
    here is a example thread from my site using this code
    http://www.secfanatics.com/vbulletin/showthread.php?t=1609
     
    freshprince, Aug 8, 2005 IP
  2. freshprince

    freshprince Peon

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If you use this code then share your experience.. would like to know how it does for other people. I know my clicks more than doubled when i added this code to my forum
     
    freshprince, Aug 8, 2005 IP
  3. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #3
    And what happens if you have 20 posts per page? You end up breaking the rules of three ads per page! And users can select how many posts show up per page.

    More like every nine posts, and with no only an ad in the header and not the footer.
     
    Nintendo, Aug 8, 2005 IP
  4. subhendu

    subhendu Peon

    Messages:
    124
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Google won't show more than 3 ads even if you put the code.

    Subhendu
     
    subhendu, Aug 8, 2005 IP
  5. TheWebJunkie

    TheWebJunkie Banned

    Messages:
    630
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanks for that code i will be using it one my next forum :)
     
    TheWebJunkie, Aug 9, 2005 IP
  6. freshprince

    freshprince Peon

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6

    true since i have adsense in my header i do only 10 posts per page so that doesnt happen..
    you can edit the code as well and change it to every how many posts that you want
     
    freshprince, Aug 9, 2005 IP
  7. freshprince

    freshprince Peon

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #7
    to change to every 9 posts just change this

    <if condition="$post[postcount] % 6 == 0">



    to this

    <if condition="$post[postcount] % 9 == 0">
     
    freshprince, Aug 9, 2005 IP
  8. vprp

    vprp Peon

    Messages:
    274
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #8
    AdSense after the first post works pretty well. One thing I've noticed on my golf forum is only the ad after the first post works well. If you have another ad on the thread, it won't perform well at all.

    If you want to know where the real money is to be made from AdSense for forums, it's in the archive.
     
    vprp, Aug 9, 2005 IP
    explorer likes this.
  9. yfs1

    yfs1 User Title Not Found

    Messages:
    13,798
    Likes Received:
    922
    Best Answers:
    0
    Trophy Points:
    0
    #9
    What would be the comparable "add-in" for phpBB?
     
    yfs1, Aug 9, 2005 IP
  10. blinxdk

    blinxdk Peon

    Messages:
    660
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Archive?

    I tried adsense on a phpBB forum with lots of users, they weren't very on topic and the CTR was not worth speaking of.
     
    blinxdk, Aug 9, 2005 IP
  11. vprp

    vprp Peon

    Messages:
    274
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Well, my ads are pretty targeted. Usually golf related.

    I've found that visitors to my archive usually come from search engines since my members probably wouldn't browse the archive. Since I'm not really conscious about upsetting non-registered users, I have ad placements in prominent locations in the archive.

    I have AdSense and forum registration messages located in prominent areas of the archive to make the chances of a visitor clicking on either of those as high as possible. You'd be surprised at the click through rate you can get in the archive.
     
    vprp, Aug 9, 2005 IP
  12. Allen

    Allen Peon

    Messages:
    83
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #12
    I think this should be a good solution:
    Inline Banner Ad - http://www.phpbb.com/phpBB/viewtopic.php?t=306680
     
    Allen, Aug 9, 2005 IP
  13. TheWebJunkie

    TheWebJunkie Banned

    Messages:
    630
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Thats a very good idea :)
     
    TheWebJunkie, Aug 9, 2005 IP
  14. blinxdk

    blinxdk Peon

    Messages:
    660
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    0
    #14
    I'm still completely lost as to what the archive is, is that some vbulletin specific feature?

    Sorry for my stupidness, I blame it on language barriers ;)
     
    blinxdk, Aug 9, 2005 IP
  15. yfs1

    yfs1 User Title Not Found

    Messages:
    13,798
    Likes Received:
    922
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Great new Mod...Took just a few seconds to install

    I like the Admin of that. I'm not sure if vB is the same way but not only can you choose whether Guests/Members see the ads but you can base them on post count.

    After 10 posts, for example, you can have the ads disappear.

    Thanks for pointing out the link!
     
    yfs1, Aug 9, 2005 IP
  16. Swordfish

    Swordfish Active Member

    Messages:
    988
    Likes Received:
    30
    Best Answers:
    0
    Trophy Points:
    70
    #16
    Looks like a good mod to phpbb.. I have considered it, but I don't want to annoy my users..
     
    Swordfish, Aug 9, 2005 IP
  17. yfs1

    yfs1 User Title Not Found

    Messages:
    13,798
    Likes Received:
    922
    Best Answers:
    0
    Trophy Points:
    0
    #17
    Do you think it would hurt you if it was displaying to Guests only?
     
    yfs1, Aug 9, 2005 IP
  18. LeeD

    LeeD Well-Known Member

    Messages:
    686
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    110
    #18
    Yes, I believe the "archive" is vBulletin specific.
     
    LeeD, Aug 9, 2005 IP
  19. freshprince

    freshprince Peon

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #19
    actually Invision Powerboard has a archive as well
     
    freshprince, Aug 9, 2005 IP
  20. thebassman

    thebassman Asleep at the Keyboard

    Messages:
    1,105
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    140
    #20
    Thanks for the mini-review - I'll give it a go later today... :)
     
    thebassman, Aug 9, 2005 IP