XF 1.2 Remove site name from thread and forum titles.

mbt131

Member
I want to remove site name from thread and forum titles.
My site title : Example Web Site
My Thread and forum title : Example Forum | Example Web Site
I want my thread and forum titles like just : Example Forum

Actually delete site name from all titles.
 
Alternatively, you can place this in EXTRA.css, which won't get potentially affected during updates:

Code:
.forum_list .titleBar h1 {
    display: none !important;
}
 
Top Bottom