korelim New member Jan 21, 2025 #1 Friends, when we start a topic, it says: "Topic Title | XenForo Community" 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?
Friends, when we start a topic, it says: "Topic Title | XenForo Community" 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?
korelim New member Jan 21, 2025 #2 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 & Languages → Templates → PAGE_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! Upvote 0 Downvote
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 & Languages → Templates → PAGE_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!