XF 1.3 Subtitle for Index page

JackieChun

Well-known member
Hey guys,

Upgrading from IP Board, so will have a bunch of questions in the next few days.

Is there an option to have a subtitle for my forum index? IPB had that. For example, if the forum title is Widget Forums and the subtitle is Everything widgets, everyday!, IPB would display the index page title as Widget Forums - Everything widgets, everyday!

This is very helpful for SEO, because it gives a Google user an instant description of your forum beyond the title, and allows you to "cheat" because you're basically adding an extra phrase to your meta description.

That subtitle would only shown on the index, and not topics or forums. Can we implement something like this in XenForo?
 
I've figured it out. Find the following line in the page_container template.

Code:
<title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle}</xen:if></title>

Change it as follows

Code:
<title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle} - WHATEVER ELSE YOU WANT IN THE TITLE</xen:if></title>

:D
 
Top Bottom