Any ideas how to get rid of the stupid text in the footer?

Gogol11

Collaborate
Collaborate
Registered
Joined
Oct 19, 2019
Messages
37
Points
18

Reputation:

I am still watching the code to get rid of this stupid text. May someone has an idea how to do that?
 

moohook

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

Reputation:

I think he's talking about Xenforo copyright, nulled versions don't need this and nothing Xenforo can do about it

"Forum software by XenForo® © 2010-2019 XenForo Ltd. "
 

WifiSpyX

Member
Registered
Joined
Apr 17, 2020
Messages
5
Points
1

Reputation:

It would be great to get rid of this xenforo text, thanks for the idea!
 

Whatever

No one
Collaborate
Registered
Joined
Oct 2, 2019
Messages
134
Points
53

Reputation:

Put this in ur extra.less

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

Thats all....
 

alodda

Active member
Registered
Joined
Mar 16, 2021
Messages
38
Points
18

Reputation:

you can do it easily

in template : PAGE_CONTAINER

find the line 620

Code:
<xf:if contentcheck="true">
            <div class="p-footer-copyright">
            <xf:contentcheck>
                <xf:copyright />
                {{ phrase('extra_copyright') }}
            </xf:contentcheck>
            </div>
        </xf:if>

replace with

Code:
<!--<xf:if contentcheck="true">
            <div class="p-footer-copyright">
            <xf:contentcheck>
                <xf:copyright />
                {{ phrase('extra_copyright') }}
            </xf:contentcheck>
            </div>
        </xf:if>-->

tell me if what you want to do
 
Top