I have noticed that every page has the same title too. This is of course terrible for search engine placement.
The problem is that the headinclude features this:
Code:
<title>$vboptions[bbtitle] Mobile</title>
<link rel="stylesheet" href="wireless.css" type="text/css" />
I have been trying to use conditionals in the headinclude to change this. I can get it to work for the foumdisplay pages but not showthread:
Code:
<if condition="THIS_SCRIPT == 'forumdisplay'">
<title>$foruminfo[title_clean]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if></title>
<else />
<if condition="THIS_SCRIPT == 'showthread'">
<title>$thread[prefix_plain_html] $thread[title]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if></title>
<else />
<title>$vboptions[bbtitle] Mobile</title>
</if>
</if>
<link rel="stylesheet" href="wireless.css" type="text/css" />
I just get a blank title for the threads. I presume that this means that for some reason the $thread information isn't available? The page number will show, but the prefix and title are missing.
I am a complete novice at this kind of alteration. Can anyone see what I am doing wrong?