How can I remove footer copyright addresses in the admin panel?

E1A

Member
Registered
Joined
May 12, 2022
Messages
16
Points
3

Reputation:

I want to remove the footer copyright addresses in the admin panel. Is there any chance that I can do this from templates or from the xml file of the plugin address attached to the footer?

Screenshot.jpg
 

one_finger_man

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

Reputation:

to change the xenforo you can do this by going to your server and look for /public_html/src/XF.php and change the copyright

and than go to your theme and search for PAGE_CONTAINER look for
Code:
{{ phrase('extra_copyright') }}

and remove than refresh
 
  • Like
Reactions: E1A

E1A

Member
Registered
Joined
May 12, 2022
Messages
16
Points
3

Reputation:

to change the xenforo you can do this by going to your server and look for /public_html/src/XF.php and change the copyright

and than go to your theme and search for PAGE_CONTAINER look for
Code:
{{ phrase('extra_copyright') }}

and remove than refresh
one_finger_manI did what you said. Only Xenforo's own copyright has been removed by the method you said. I want to remove the files that the addons have added as well. How do I do that.
Screenshot (1).jpg
 

one_finger_man

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

Reputation:

page container search for copyright

Code:
{{ phrase('extra_copyright') }}
 

E1A

Member
Registered
Joined
May 12, 2022
Messages
16
Points
3

Reputation:

page container search for copyright

Code:
{{ phrase('extra_copyright') }}
one_finger_manI have already deleted the {{phrase('extra_copyright')}} field from the PAGE_CONTAINER section in the master theme. But there are still links in the footer section. Also, there is no extra_copyright in the active theme I am currently using.
Screenshot (2).jpg
 

one_finger_man

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

Reputation:

disregard this i was reading something else

just change the name of the theme if thats what ya saying Default style
 
Last edited:

dddd

Well-known member
Registered
Joined
Mar 2, 2022
Messages
68
Points
18

Reputation:

I want to remove the footer copyright addresses in the admin panel. Is there any chance that I can do this from templates or from the xml file of the plugin address attached to the footer?

View attachment 29632
E1AI removed the ACP copyright from the files, instead of using template modifications
X10EGzj.png
 

one_finger_man

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

Reputation:

I removed the ACP copyright from the files, instead of using template modifications
X10EGzj.png
ddddmake sure you run check file health so there is no issues
 

dddd

Well-known member
Registered
Joined
Mar 2, 2022
Messages
68
Points
18

Reputation:

I want to remove the footer copyright addresses in the admin panel. Is there any chance that I can do this from templates or from the xml file of the plugin address attached to the footer?

View attachment 29632
E1A
src/addons/XF/_data/templates.xml - remove lines 229, 230 and 231, and don't leave an empty line
HTML:
            <span class="p-footer-copyright">
                <xf:copyright /> {{ phrase('extra_copyright') }}
            </span>
from this:
2Y9Q5hE.png

to this:
svC90KD.png


src/addons/XF/hashes.json - line 340
replace: 7926ec7a2a86d1b180d64afff0a92c6417d48bf7cd5debf31f6d7014c860afdc
with: cb7854640b92794229003e32ce040c2c90b035f50fbbdbd9d9a6f60fd8a103fd

then go to /install/ and rebuild the master data for the changes to take effect
 
Last edited:
Top