MyBB Community Forums

Full Version: Changing Title Tags for Forums?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You know when you hover over "MyBB 1.6 General Support," and nothing comes up? How do I make it so if I hovered over "MyBB 1.6 General Support ," it would say using a title tag "MyBB 1.6 General Support."

It's hard to put it into words, but I'm thinking a template change so if I hover over a section on my forums called "Halo Reach" it'll say Halo Reach....for better Search Engine Optimization.
I'm fairly sure this would require a plugin or some core edits.
Templates & Style » Templates » Theme Name » Forum Bit Templates » forumbit_depth2_forum

Find:
<div><strong><a href="{$forum_url}">{$forum['name']}</a>

Replace with:
<div><strong><a href="{$forum_url}" title="{$forum['name']}">{$forum['name']}</a>

That was the answer.