Quote:
Originally Posted by mac27
any idea why when I use this it adds the main forum keywords to the ones I input per forum. Also it adds an extra comma at the end of the keywords I input. So when it adds the forums keywords it also adds the extra comma.
Example: word, word, word,, word, word
|
I had the same problem and it was because the second lot of code he tells you to add in the template is wrong.
Code:
<meta name="keywords" content="$foruminfo[forumkeywords],$threadinfo[title],$vboptions[keywords]" />
<meta name="description" content="$foruminfo[forumdescription]. <if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />
->
Code:
<meta name="keywords" content="$foruminfo[forumkeywords],$foruminfo[title],$vboptions[keywords]" />
<meta name="description" content="$foruminfo[forumdescription]. <if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />
Hes was trying to display thread title when hes not in a thread.