Results 1 to 10 of 10

Noindex threads with 0 replies

This is a discussion on Noindex threads with 0 replies within the Template Modifications forums, part of the vBulletin SEO Discussion category; Hi i am trying to add the no index tag to threads with 0 replies. All the conditionals i try ...

  1. #1
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times

    Noindex threads with 0 replies

    Hi i am trying to add the no index tag to threads with 0 replies.

    All the conditionals i try dont seem to work.

    Any help appreciated.

    Thanks,

    Dave.

  2. #2
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    $post[postcount] should be what you're looking for, but it won't be available in 'headinclude'.... it's not in scope until the post bit renders.

  3. #3
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    That's the issue im having, any ideas on a workaround?

  4. #4
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    short of doing the query ahead of time which would require massive code edits, (or doubling the query load for every page view), i don't think so.

  5. #5
    Senior Member
    Real Name
    Marvin Hlavac
    Join Date
    Oct 2007
    Posts
    254
    Liked
    15 times
    Quote Originally Posted by Brian Cummiskey View Post
    $post[postcount] should be what you're looking for, but it won't be available in 'headinclude'.... it's not in scope until the post bit renders.
    If the $post[postcount] cannot help Dave with the NOINDEX tag, perhaps it could help in completely preventing guests (including search engines) seeing threads with no replies, if that's something Dave would consider as an option.

  6. #6
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    The variabkle isn't available until well after the 'head' is printed. Putting a meta tag in the body will do nothing.

    If anything is to be done, a manually query which writes a txt file in robots format to block certain urls is probably the best option.

    But, it's really a wasted effort IMO. Google already will only index 'good' threads as it sees fit anyway.

  7. #7
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    But, it's really a wasted effort IMO. Google already will only index 'good' threads as it sees fit anyway.
    Yeah, that's why the index is full of spam.

    These days it is a websites responsibility to showcase it's best content, not Google to find and index it.

    If you allow access to shallow/thin content you will get penalized. This includes content that provides a bad user experience, bounce rate, time on site are all taken into account in the algo.

    I suggest you read up on the Panda Update.

    For anyone interested, here is how you noindex 0 reply threads, as threads without an answer do not offer value to a search visitor.

    It was actually very simple, im surprised no one at vb or vbseo came up with it.

    <if condition="THIS_SCRIPT == 'showthread'">
    <if condition="!$threadinfo['replycount']">
    <meta name="robots" content="noindex,follow" />
    </if>
    </if>

  8. #8
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Just because a thread has no replies doesn't mean it's spam. Some of the best articles have been stickied/closed with no replies.

  9. #9
    Senior Member
    Real Name
    Marvin Hlavac
    Join Date
    Oct 2007
    Posts
    254
    Liked
    15 times
    That's true, Brian, on my technical forum many threads with no replies are valuable reviews or tutorials. However, this may differ based on the type of a forum. Numerous people, since Panda, have implemented noindex meta tag on pages they consider "thin content". The code Dave has shared may be valuable to some people.

  10. #10
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    It also may stop any new threads from being indexed. All theads start as a no reply. If google hapepns to be on your site at the time a thread is started, it may note that thread as an 'avoid' and never come back to it for months, meanwhile it gained replies.

Similar Threads

  1. Vbulletin Noindex Tag
    By Dragan in forum Off-Topic & Chit Chat
    Replies: 1
    Last Post: 07-09-2011, 11:40 PM
  2. How can I create a funnel to track posts to 0 replies threads.
    By Coume in forum Analysis: Traffic & SERPS
    Replies: 1
    Last Post: 11-15-2009, 10:26 AM
  3. please help noindex my linke
    By kavehch in forum General Discussion
    Replies: 0
    Last Post: 10-04-2009, 12:40 AM
  4. noindex tag
    By Ig@r in forum vBSEO Features Archive
    Replies: 0
    Last Post: 10-19-2006, 12:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •