XF 2.3 Please help me with editing the subject title and the main title.

korelim

New member
Friends, when we start a topic, it says:
"Topic Title | XenForo Community"
1737456738402.webp

In other words, it adds the homepage title as an additional part.

I want to remove this and set it up as example.com instead.

How can I do this?
 
I solved the problem. I am using XenForo version 2.3.4.

Here is the guide for those who want to do the same. Please read carefully.

Go to Appearance & LanguagesTemplatesPAGE_CONTAINER.

Open PAGE_CONTAINER and find the following code:

Code:
<title><xf:title formatter="%s | %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>

Replace it with the following code:

Code:
<title><xf:title formatter="%s | websitename.com" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>

Save the changes. That’s it!
 
Back
Top Bottom