How to remove forum name from topics and forums titles ?

A.Chakery

Active member
hi,
I wonder How to remove forum name from topics and forums titles ?

because its a negative point for "Long Tail SEO" so I wanted to remove it , but I wonder how, I mean which templated should be edited to do it ?

here is an example of what I am saying :

its the title of this forum :

General Support and Questions | XenForo Community

I wanna remove the red part from topics (discussions) and forums.

thanks

Regards
 
Do you mean the URL or browser tab?

The "General Support and Questions | XenForo Community" is in the browser tab and therefore has nothing to do with the URL.
 
In template PAGE_CONTAINER:
Code:
    <title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle}</xen:if></title>
replace with:
Code:
    <title><xen:if is="{$title}">{xen:raw $title}<xen:else  />{$xenOptions.boardTitle}</xen:if></title>
 
thanks for the Reply,

I just wanna know the template name , :)


and what about Forums ?

infact my question is : whats the Forumdisplay and Showthread template name in XF ?

thanks so much
 
Top Bottom