Xenforo 2.1 Remove branding

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,886
Points
823

Reputation:

GrassBoy

Active member
Registered
Joined
Mar 25, 2020
Messages
28
Points
3

Reputation:

Just that? Because it doesn't work. However i should mention that I want to remove ONLY theme's and add-on's branding. Not XenForo (i wan that branding to stay)
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,886
Points
823

Reputation:

This has to look in the code
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,886
Points
823

Reputation:

DareSec

Inforc3r
Staff member
Administrator
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
May 25, 2019
Messages
1,376
Points
523

Reputation:

To remove it, simply go to /src/config.php and add the line$config['removeThemeHouseBranding'] = true;
 

Soft4Win

Developer
Staff member
Moderator
Collaborate
Registered
Joined
Apr 27, 2019
Messages
370
Points
103

Reputation:

The Method @DareDevil mentioned will work for ThemeHouse Themes , but in case you want to remove all brandings of addon , aswell as any theme than

Go to templates and search for extra.less and paste the below code.

CSS:
.p-footer-copyright{
display:none;
}

This should work in most situations . Tested with ThemeHouse Themes aswell and working perfectly.
 

miireal

New member
Registered
Joined
Jul 31, 2020
Messages
2
Points
13

Reputation:

The Method @DareDevil mentioned will work for ThemeHouse Themes , but in case you want to remove all brandings of addon , aswell as any theme than

Go to templates and search for extra.less and paste the below code.

CSS:
.p-footer-copyright{
display:none;
}

This should work in most situations . Tested with ThemeHouse Themes aswell and working perfectly.
Soft4Winthx
 

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
453
Points
53

Reputation:

The Method @DareDevil mentioned will work for ThemeHouse Themes , but in case you want to remove all brandings of addon , aswell as any theme than

Go to templates and search for extra.less and paste the below code.

CSS:
.p-footer-copyright{
display:none;
}

This should work in most situations . Tested with ThemeHouse Themes aswell and working perfectly.
Soft4Winyeah it working on other themes too otherwise developers looting 15$ just for removal...
 

GrassBoy

Active member
Registered
Joined
Mar 25, 2020
Messages
28
Points
3

Reputation:

Yes, thank you! This worked for the Style.
What about the add-on?
 
Top