XF 2.1 How to remove name on home page

goflish

Member
How do I remove that "Crusadia" on the home page?

UWyl4s9.png
 
Line 1 of the forum_list template, where it has:
Code:
<xf:h1>{$xf.options.boardTitle}</xf:h1>
Change it to:
Code:
<xf:h1></xf:h1>
With this method you can also put anything there you want, like:
Code:
<xf:h1>Hello World!</xf:h1>
For example. And you can change it any time, to fit occasions. Like:
Code:
<xf:h1>Happy Birthday gofish!</xf:h1>
 
Top Bottom