Category Page Titles
For some reason my category page html titles simple display the categroy name and not the typical "Category Name - Forum Name."
Any insight into where I should look to debug this?
Any insight into where I should look to debug this?
0
Best Answer
-
Linc Admin
Nice catch. This is a core bug. I've fixed it, and it will be in the first patch release for 2.0.18.
If it's really bugging you (har har), you can go to /applications/vanilla/controllers/class.categoriescontroller.php and find this ~ line 86:
$this->Head->Title(GetValue('Name', $Category, ''));
And replace it with this:
$this->Title(GetValue('Name', $Category, ''));
1
Answers
Thanks
There was an error rendering this rich post.
If it's really bugging you (har har), you can go to /applications/vanilla/controllers/class.categoriescontroller.php and find this ~ line 86:
$this->Head->Title(GetValue('Name', $Category, ''));
And replace it with this:
$this->Title(GetValue('Name', $Category, ''));