Resource icon

Remove forum title from your forum

cosmin85

Active member
I had the same problem, came up with this.
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 cyry!</xf:h1>
 
I had the same problem, came up with this.
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 cyry!</xf:h1>
Thanks .
It`s also a god option .
 
I installed xenforo after a long time and it was the 2nd thing after none breadcrumb that I was looking for. Thanks.

For Media Gallery:
Code:
[data-template="xfmg_media_index"]
{
    .p-title-value {
        display: none;
    }
    .p-title {
        float: right;
    }
}
 
Top Bottom