frm
Well-known member
I'm configuring XenForo in more of a CMS manner with a lot of different addons. Currently, the forum is the "index" but I forsee using some sort of a portal to navigate to the different features of the forum in time.
What's annoying me is setting the Board title in the admin settings to Site.com as Site.com will appear in the h1 tag and not something a little more SEO friendly, with more exact searches, such as Site Forum.
I know it has to be something in this code to be changed and I fiddled with it to only make changes across the board (What's new -> Site Forum, etc.). What change do I need to make where just the forum's main index page ignores boardTitle and makes Site Forum the h1 title, not affecting it elsewhere?
Thanks
What's annoying me is setting the Board title in the admin settings to Site.com as Site.com will appear in the h1 tag and not something a little more SEO friendly, with more exact searches, such as Site Forum.
I know it has to be something in this code to be changed and I fiddled with it to only make changes across the board (What's new -> Site Forum, etc.). What change do I need to make where just the forum's main index page ignores boardTitle and makes Site Forum the h1 title, not affecting it elsewhere?
Code:
<xf:set var="$siteName" value="{$xf.options.boardTitle}" />
<xf:set var="$h1"><xf:h1 fallback="{$siteName}" /></xf:set>
Thanks