How to remove "Siropu chat" footer copyright

hallotofayel

Member
Registered
Joined
May 2, 2020
Messages
12
Points
13

Reputation:

Hello xenforo expert, please help me. I have install "Siropu Chat" in my xenforo forum. now i want to remove the footer link. How to remove "Siropu chat" footer copyright link?

HOW.png
 

friend

Member
Registered
Joined
Apr 28, 2020
Messages
20
Points
23

Reputation:

Is that a siropu chat footer link? Mmmm, anyway you could try adding one of these small codes to your STYLE. These small codes are a crude way to remove many footer links. Give em a go (nothing to lose).

paste them into your (style) extra.less (to see if any of them work for you) if it works you need to place a copy in each style you use.

option 1
code

span.u-concealed {
display: none;
}

and save



option 2

if not try this code

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

again save

option 3

code

span.u-concealed {
display: none;
}
.p-footer-copyright { display: none; }


save


TBH you could add both - it will do no harm. Other wise you will need to edit siropu chat script.
 

friend

Member
Registered
Joined
Apr 28, 2020
Messages
20
Points
23

Reputation:

Appearance > Styles > Templates > then type extra into the search bar top right of your screen

here.jpg

click on extra.less - then at the bottom of any other code that maybe in there, copy and paste the code(s) i poster early on.


it should end up something like this test i show in attachment below

screen_2020-05-17 14.55.55.jpg

So just enter from line 10 - line 14

save

and hope it works
 

friend

Member
Registered
Joined
Apr 28, 2020
Messages
20
Points
23

Reputation:

@ hallotofayel

You should of downloaded from enxf.net you would not have these problems... enxf is TRUSTED by many xenforo users world wide.. (y)
 

hallotofayel

Member
Registered
Joined
May 2, 2020
Messages
12
Points
13

Reputation:

Thanks for your advice. I have solved my problem writing this code, .copyright { display: none; }
 

Warfare

[Your Welcoming Staff Member]
Staff member
Administrator
Moderator
+Lifetime VIP+
V.I.P Member
Collaborate
Registered
Joined
Apr 29, 2020
Messages
344
Points
103

Reputation:

Top