hi (2fast4ya)

(written by 2fast4ya)

I honestly hope this site could be somewhat of a help…

I found this blog and video about optimizing vbulletin for google adsense, only problem… can’t see a damn thing he’s doing when he’s editing code.

Take a look, I’m sure you’ve seen it before: (Resource no longer exists)

I was hoping this site could have a nice vbulletin guide that was actually visible instead of the blurry one on duoblogger.

I want to generate relevant ads on my site, and it seems like the video had the right idea.

Anyone help?

This entry was posted in Introduction and tagged , , , , , . Bookmark the permalink.

18 Responses to hi (2fast4ya)

  1. admin says:
    Hello and welcome to AdsenseExperts

    Section targeting are Suggestions to AdSense which part of the content you say is the most relevant for AdSense.

    So I would wrap it around the Thread Title and the Posts in a thread.

    You can do that in the postbit or postbit_legacy template.

    If you want you can (Resource no longer exists) they implement section targeting with their software all around the forum. It is the most easiest way.

    I am using it on all of my forums.

    If you want you can find a long term case study of one of my forums using vBSEO here: (Resource no longer exists)
  2. 2fast4ya says:
    I thought vbSEO was pretty much pointless for vBulletin 4?
  3. admin says:
    vBSEO is not just about rewriting the URL.

    However I don't say that it will work miracles on your traffic, but personally I like it and use it on all of my forums.

    I just started this one here and use vBSEO on it ;)

    It has so many nice little things like the Section targeting that you don't have to take care of any more then ;)
  4. 2fast4ya says:
    Sounds very interesting, I may have to look into it further.
  5. JamesColin says:
    Hello, you can play the video fullscreen, I've looked at it and I guess by following the voice and the overall form of the code you can find it back on your own forum and edit in the right places.

    Or simply ask the author of the video for the original file or a better resolution file, perhaps he won't mind sending it to you.
  6. 2fast4ya says:
    Do any of you guys have any idea where to put the Section Targeting codes in vbulletin? So far I have them in the start and end of the Postbit - but I would also like to know where else to put them
  7. admin says:
    Thread Title definitively, similar threads maybe

    But you can also set large portions of text to be ignored by using:
    <!-- google_ad_section_start(weight=ignore) -->
    which you could wrap around the footer, the navbar, the username, etc.
    • 2fast4ya says:
      Thread Title definitively, similar threads maybe

      But you can also set large portions of text to be ignored by using:
      <!-- google_ad_section_start(weight=ignore) -->

      which you could wrap around the footer, the navbar, the username, etc.

      oh, and where can I find the thread title?
  8. 2fast4ya says:
    How about the home page of the Forum... those results aren't coming in as correct as I'd hope... and that's where a high amount of my ad impressions are...

    Do you know where exactly I should put any type of section targeting code to get the ads to show up better...

    ps - starting to love you guys for all the help
  9. admin says:
    In the showthread template
  10. 2fast4ya says:
    Okay, and do you know where I place the code exactly? Just in the beginning and end?
  11. admin says:
    no directly before and after the thread title.

    Also in the postbit you should wrap it around the post message only and not the whole postbit template.
    • 2fast4ya says:
      no directly before and after the thread title.

      Also in the postbit you should wrap it around the post message only and not the whole postbit template.
      Okay... I'm not an expert with code or anything...

      But correct me if I'm wrong... Is this the code in the postbit that I need to wrap the section targeting around?
      <div class="postbody">
        {vb:raw template_hook.postbit_messagearea_start}
        <div class="postrow">
          <vb:if condition="$post['title'] OR $show['messageicon']">
            <h2 class="posttitle icon">
              <vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
            </h2>
          </vb:if>
          <vb:if condition="$post['isfirstshown']">
            {vb:raw ad_location.ad_showthread_firstpost_start}
            {vb:raw ad_location.thread_first_post_content}
          </vb:if>
          <vb:if condition="$post['islastshown']">
            {vb:raw ad_location.thread_last_post_content}
          </vb:if>
          <div class="content<vb:if condition="$show['first_ad'] OR $show['last_ad']"> hasad</vb:if>">
            <div id="post_message_{vb:raw post.postid}">
              <blockquote class="postcontent restore">
                {vb:raw post.message}
              </blockquote>
            </div>
            <vb:if condition="$show['attachments']">
              <div class="attachments">
                <vb:if condition="$show['thumbnailattachment']">
                  <fieldset class="postcontent">
                    <legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" alt="{vb:rawphrase attached_thumbnails}" /> {vb:rawphrase attached_thumbnails}</legend>
                    {vb:raw post.thumbnailattachments}
                  </fieldset>
                </vb:if>
                <vb:if condition="$show['imageattachment']">
                  <fieldset class="postcontent">
                    <legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attached_images}</legend>
                    {vb:raw post.imageattachments}
                  </fieldset>
                </vb:if>
                <vb:if condition="$show['imageattachmentlink']">
                  <fieldset class="postcontent">
                    <legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attached_images}</legend>
                    <ul>
                      {vb:raw post.imageattachmentlinks}
                    </ul>
                  </fieldset>
                </vb:if>
                <vb:if condition="$show['otherattachment']">
                  <fieldset class="postcontent">
                    <legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attached_files}</legend>
                    <ul>
                      {vb:raw post.otherattachments}
                    </ul>
                  </fieldset>
                </vb:if>
                <vb:if condition="$show['moderatedattachment']">
                  <fieldset class="postcontent">
                    <legend><img src="{vb:stylevar imgdir_misc}/paperclip.png" class="inlineimg" /> {vb:rawphrase attachments_pending_approval}</legend>
                    <ul>
                      {vb:raw post.moderatedattachments}
                    </ul>
                  </fieldset>
                </vb:if>
              </div>
              <!-- / attachments -->
            </vb:if>
          </div>
  12. admin says:
    No, only this one
    {vb:raw post.message}
  13. 2fast4ya says:
    Is there a TITLE tag in Postbit that I should be wrapping it around too?
  14. admin says:
    Try to do a little bit of thinking yourself.

    The code isn't that hard to read.
    {vb:raw post.title}
    would be the post title.
  15. 2fast4ya says:
    Is there a chance that I just want to ask the "adsense experts" to make sure I'm not doing anything wrong or forgetting something?
  16. admin says:
    Set your vBSettings to show HTML Comments and check your results in your HTML source.

    This way you can see where something has to go and if you made a mistake.

    You can hardly do anything wrong here. In the worst case just revert the template to its original state and start over. It's basic HTML that any webmaster should know or at least start to learn.

Leave a Reply

Your email address will not be published. Required fields are marked *

*