1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Section Targetting & forums

Discussion in 'AdSense' started by thebassman, Aug 26, 2005.

  1. #1
    Has anyone tried to impliement section targetting on their forums? phpbb forums specifically tend to bring up phpbb-related ads, and section targetting might help reduce this. Has anyone placed around with it and seen good results?
     
    thebassman, Aug 26, 2005 IP
  2. aeiouy

    aeiouy Peon

    Messages:
    2,876
    Likes Received:
    275
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Yes.

    I exclude the overallheader.tpl all the way from where it starts <body> until the end.

    I exclude the entire overallfooter.tpl

    Then I include just the postrow section for the text in viewtopic.tpl

    Seems to work pretty well. I can get targetted ads that are way off topic for my site just from the post text.
     
    aeiouy, Aug 26, 2005 IP
  3. programmer

    programmer Guest

    Messages:
    444
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #3
    hum.... then it seems its useful :)
     
    programmer, Aug 26, 2005 IP
  4. thebassman

    thebassman Asleep at the Keyboard

    Messages:
    1,105
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    140
    #4
    So you just include the post comments basically, then, eh?
     
    thebassman, Aug 26, 2005 IP
  5. aeiouy

    aeiouy Peon

    Messages:
    2,876
    Likes Received:
    275
    Best Answers:
    0
    Trophy Points:
    0
    #5
    yup. I just tested it for fun. I have a link unit on the top of each topic.. By the time the message refreshed after I posted it I had targeted ads. It is instant for me.

    I have seen a few cases where ads have gone off target and then gone back and not sure why.. but it seems to work well for me.
     
    aeiouy, Aug 26, 2005 IP
  6. jumble

    jumble Peon

    Messages:
    142
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    jumble, Aug 27, 2005 IP
  7. thebassman

    thebassman Asleep at the Keyboard

    Messages:
    1,105
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    140
    #7
    Is there a phpbb walk-through on where to change this...?
     
    thebassman, Aug 27, 2005 IP
  8. aeiouy

    aeiouy Peon

    Messages:
    2,876
    Likes Received:
    275
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Let me see if I can put something together tomorrow.. I am a bit delirious from lack of sleep right now to do it justice... And I need to check because the site I did it on was fairly modified so I don't want to make it too confusing.
     
    aeiouy, Aug 27, 2005 IP
  9. aeiouy

    aeiouy Peon

    Messages:
    2,876
    Likes Received:
    275
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I will give it a try now... might not be pretty.. but I will do it on a clean 2.017 install:


    open templates/subsilver/overall_header.tpl

    find:
    </head>
    Code (markup):
    add after:
    <!-- google_ad_section_start(weight=ignore) -->
    Code (markup):
    find:
    td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu">&nbsp;<a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a>&nbsp; &nbsp;<a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a>&nbsp; &nbsp;<a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a>&nbsp;</span></td>
    </tr>
    </table></td>
    </tr>
    </table>
    
    <br />
    Code (markup):
    add after:
    <!-- google_ad_section_end -->
    Code (markup):


    open templates/subsilver/overall_footer.tpl

    find:
    <div align="center"><span class="copyright"><br />{ADMIN_LINK}<br />
    Code (markup):
    add before:
    <!-- google_ad_section_start(weight=ignore) -->
    Code (markup):

    find:
    </body>
    Code (markup):
    add before:
    <!-- google_ad_section_end -->
    Code (markup):

    open template/subsilver/viewtopic_body.tpl


    find:
    <!-- BEGIN postrow -->
    Code (markup):
    add after:
    <!-- google_ad_section_start -->
    Code (markup):

    find:
    <!-- END postrow -->
    Code (markup):
    add before:
    <!-- google_ad_section_end -->
    Code (markup):
    That should work for focusing the forum text for ads on the forum pages.

    If you have any problems let me know... I know it is not in standard mod form, but it will have to do for now. :)
     
    aeiouy, Aug 27, 2005 IP
    Willy and thebassman like this.
  10. thebassman

    thebassman Asleep at the Keyboard

    Messages:
    1,105
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    140
    #10
    Sweet! Thanks! :D
     
    thebassman, Aug 28, 2005 IP
  11. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #11
    Joeychgo was part of a beta test/experiment run bu Google to look at click-through rates for ads positioned in diffferent parts of forum pages. See his thread at http://www.vbwebmaster.com/forums/ -- it's for vBulletin but the results should apply to any forum.
     
    minstrel, Aug 28, 2005 IP
  12. thebassman

    thebassman Asleep at the Keyboard

    Messages:
    1,105
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    140
    #12
    Good info... :)
     
    thebassman, Aug 28, 2005 IP
    STVP likes this.
  13. thebassman

    thebassman Asleep at the Keyboard

    Messages:
    1,105
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    140
    #13
    thebassman, Aug 28, 2005 IP
  14. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #14
    Thanks, bassman... laundry day here and I was too lazy to go look :eek:
     
    minstrel, Aug 28, 2005 IP
  15. crazyhorse

    crazyhorse Peon

    Messages:
    1,137
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Anyone seeing some better results? I have made the change this week and since I have made the change I got a feeling my ECPM went down half. Is anyone else experiencing this? I know it will take about two weeks to serve the right ads. It looks as soon you make a change it has a effect on your ECPM.
     
    crazyhorse, Aug 31, 2005 IP
  16. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #16
    You made which change exactly? :confused:
     
    minstrel, Aug 31, 2005 IP
  17. crazyhorse

    crazyhorse Peon

    Messages:
    1,137
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #17
    I have implemented the section targeting coding in my phpbb templates and since then I have noticed that my ECPM went down. I was just wondering whether this would be a coincident?
     
    crazyhorse, Aug 31, 2005 IP
  18. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #18
    I don't know about your forum specifically but I can give you some personal feedback: I think having Google ads in more than one location, or moving around, or in the middle of the page/thread is annoying... and when I'm annoyed by ads I don't click on them and may even block them.

    My advice is to put them in the page header or footer and leave them there.
     
    minstrel, Aug 31, 2005 IP
  19. crazyhorse

    crazyhorse Peon

    Messages:
    1,137
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #19
    Well my ctr averages about 5 to 6 procent so Im quit pleased with Im just a bit more concerned about my ECPM going down after adding the adsense targeting coding. Nevertheless Im just going to give it a bit more time to see the final result. Maybe the ECPM went down half because its the end of the month.
     
    crazyhorse, Aug 31, 2005 IP
  20. uprisen

    uprisen Peon

    Messages:
    61
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #20
    Did I not already .. post a thread about this.
     
    uprisen, Aug 31, 2005 IP