The default title setup for show single post pages in the
SHOWTHREAD_SHOWPOST template is
Code:
<title>$vboptions[bbtitle] - $vbphrase[view_single_post] - $threadinfo[title]</title>
this means that every single show post page cached in the search engines is going to have a title that starts the same, has the same middle, and then finally ends with the title. This is not good as far as getting taged as duplicate content.
Search engines don't care one bit weather they are viewing a single post or a thread. And the person who clicks to view a single post already knows they did so what's the point in telling them they did. SO get rid of this worthless phrase.
Code:
$vbphrase[view_single_post]
Now, you can do one of two things after discarding that junk. You can invert the remaining two so that the thread title is the first part of the title element. Like this.
Code:
<title>$threadinfo[title] - $vboptions[bbtitle]</title>
Or you can simple get rid of the bbtitle and only have the thread title.
Code:
<title>$threadinfo[title]</title>
Now when the SE's look at your show posts they see something different immediately in the title element.
Test it by clicking the #1 at the top right of this thread.
Enjoy
Code Monkey