WorldCraft |
01-19-2013 07:36 AM |
Quote:
Originally Posted by ThatsDank
(Post 2397824)
Yes but when I change it to "That's Dank Forum" it shows up for that on every other page too. Example like on the music page it says That's Dank Forum - Music. I just want it to say Forums when you are in the forums section. I guess that's hard to do.
|
Hi, you can do it with template edits. For the forumhome, go to the Style Editor in the AdminCP and edit the FORUMHOME template and find
HTML Code:
<title>{vb:raw vboptions.bbtitle}</title>
Change it to something like this
HTML Code:
<title>{vb:raw vboptions.bbtitle} - Forum</title>
For when viewing a thread you would make a similar change to your SHOWTHREAD template:
Find:
HTML Code:
<title>{vb:raw thread.prefix_plain_html} {vb:raw thread.title}<vb:if condition="$pagenumber > '1'"> - {vb:rawphrase page_x, {vb:raw pagenumber}}</vb:if></title>
and change it to something like this:
HTML Code:
<title>{vb:raw thread.prefix_plain_html} {vb:raw thread.title}<vb:if condition="$pagenumber > '1'"> - {vb:rawphrase page_x, {vb:raw pagenumber}}</vb:if> - {vb:raw vboptions.bbtitle} Forums</title>
Depending on how meticulous you want to be, you will need to make changes on quite a few other templates. MEMBERINFO for profiles, FORUMDISPLAY for pages of individual forums, etc. To help narrow down your search, use the Search Templates feature in the AdminCP and use "<title>" as your search term. The name of the template(s) will help determine what part(s) of the forum it is targeting, but feel free to ask again if you aren't sure. Good luck.
|