how to remove copyright

jhoancito

Well-known member
Registered
Joined
Mar 23, 2021
Messages
86
Points
18

Reputation:

Hello community, I have a problem. I want to remove these addon rights that appear under the forum.


Captura.PNG
 

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
419
Points
53

Reputation:

go to theme

PAGE_CONTAINER​

copyright and look for this
Code:
{{ phrase('extra_copyright') }}
it will remove only some of the add-ons but it it will only leave the xenforo copyright
 

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
839
Points
153

Reputation:

Go to PAGE_CONTAINER and remove

div p-footer-copyright
 

jhoancito

Well-known member
Registered
Joined
Mar 23, 2021
Messages
86
Points
18

Reputation:

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
419
Points
53

Reputation:

what i told you only remove some sorry for that but you can use the codes here try this it should remove the rest

Code:
.p-footer-copyright {
Display:none;
}

ps

the way i told you will only remove those in play the add-ons has there own copyrights
 

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
839
Points
153

Reputation:

what i told you only remove some sorry for that but you can use the codes here try this it should remove the rest

Code:
.p-footer-copyright {
Display:none;
}

ps

the way i told you will only remove those in play the add-ons has there own copyrights
one_finger_manI'd rather remove em entirely. That way they still get rendered in the DOM.
 
Top