Thank you for the help SeO
Is almost perfect...
Now I have:
Forum Section - Forum Name
Topic Name - Forum Name
But in index appears:
- Forum Name
How can I remove the "
-"?
This is what I have in overall_header.tpl:
<title>{PAGE_TITLE} - {SITENAME}</title>
If I change to (without -):
<title>{PAGE_TITLE} {SITENAME}</title>
My index will appear:
<title> Viciados no Sexo</title> (notice the space before title, will get problems with this in future?)
And the other titles:
Topic name forum name (dont appear the - that I like to appear)
-----------------------
Sorry if I be annoying...
Any suggestions?
--------------------------------------------- EDIT:
Well, I fix the problem in forum sections and topics, with that:
viewforum.php
- Code: Select all
$page_title = $forum_row['forum_name'] . $extra_title . ' -';
viewtopic.php
- Code: Select all
$page_title = $topic_title . $extra_title . ' -';
I have added the "-"
Now the only problem is the space before the forum name in index.
hmmmm, maybe I found a solution, like that:
<title>{PAGE_TITLE}{SITENAME}</title>
The only problem is in the other pages titles, like search, profile, etc... will get:
Page TitleForum Name (without spaces)
DAMN