XF 2.1 How to remove the page title from the "home" page

ScrapDog

Member
How can you remove the page title from the "home" page, but let the titles from the nodes as they are so you can see them.

sincerely,

ScrapDog
 
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>

Worked for me.

AND you can put anything there you want, for example "Hello World" and it will appear with the same formatting it's called normally.
 
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>

Worked for me.

AND you can put anything there you want, for example "Hello World" and it will appear with the same formatting it's called normally.
Yessss thx , it worked for me also (y)

Thx a lot
 
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>

Worked for me.

AND you can put anything there you want, for example "Hello World" and it will appear with the same formatting it's called normally.
How to find them where the files, I have searched in root, also phrase but nothing comes up. What mistake am I making?
 
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>

Worked for me.

AND you can put anything there you want, for example "Hello World" and it will appear with the same formatting it's called normally.
Does not work on my forum :-(
 
Top Bottom