how to remove this???

Ominous

Member
Registered
Joined
Oct 31, 2019
Messages
20
Points
13

Reputation:

anyone know how to remove this?

6f308230e9078e1d67608763da1429262222.png
 

GrimHackers

GrimHackers.ME
Collaborate
Registered
Joined
Mar 26, 2019
Messages
138
Points
73

Reputation:

You can find it in Appearance > Templates

I have to see your site to check the exact template name
 

moohook

Well-known member
Registered
Joined
Feb 8, 2019
Messages
108
Points
38

Reputation:

I wanted to remove this too, I'm rather good with coding languages PHP, HTML, CSS etc but this xenforo code is hurting my head.

Admin CP -> Appearance -> Templates -> forum_list


Remove this code:
Code:
<xen:h1>{$xenOptions.boardTitle}</xen:h1>
 
Last edited:

moohook

Well-known member
Registered
Joined
Feb 8, 2019
Messages
108
Points
38

Reputation:

Actually yours may be in a different location, like @GrimHackers said. Just look for that code and remove
 

nulleros

Well-known member
Registered
Joined
Sep 18, 2019
Messages
59
Points
18

Reputation:

If you can't do something else, look in templates for the following "extra.less" and write the following

Code:
.p-body-header {
    display: none;
}
 
Top