XF 2.2 How to change forums title text..?

Luke247

Member
Hello.

How can I change the text in the red box (see image below) to say "Welcome Back!" without changing the "board title" under "basic options"?

123.png
 
Solution
Thanks for the help. Can you give me the code that I should add and where to add it?
Certainly.

Line 4 or thereabouts of FORUM_LIST template look for:
Code:
<xf:h1>{$xf.options.boardTitle}</xf:h1>

Make it:
Code:
<xf:h1>Anything you want it to say</xf:h1>

And save.

Chromaniac

Well-known member
I suppose you can hide the text using css assuming it is not an optional field. And then create an ad block for this position and write in the text you want to show here.
 

Max Taxable

Well-known member
Thanks for the help. Can you give me the code that I should add and where to add it?
Certainly.

Line 4 or thereabouts of FORUM_LIST template look for:
Code:
<xf:h1>{$xf.options.boardTitle}</xf:h1>

Make it:
Code:
<xf:h1>Anything you want it to say</xf:h1>

And save.
 
Last edited:
Solution
Top