How to remove social media buttons from my WP website?

Joalis

Regular Member
Joined
Jan 7, 2020
Messages
203
Reaction score
29
Hello,

I checked all my settings, all my plugins, but I can not find any way how to remove those buttons

NI5oORL
 
if its not a plugin then it may be embedded in the theme, so check the theme settings.
 
I checked all my themes settings, all widgets, still can not find...
Go to the page where they appear. (Edit it and there should be a tick box for 'show socialmedia')
 
Go to the page where they appear. (Edit it and there should be a tick box for 'show socialmedia')
It appears on every page and unfortunatelly there is no tick box for social media when editing
 
It appears on every page and unfortunatelly there is no tick box for social media when editing

Then you gotta edit the theme HTML.

Inspect element, find its ID or class, then search for that on the theme HTML's.
 
You need to remove the element id in your html code.
 
Yes, remove or get the element id then using display none if possible. If u afraid messing the code display none is good too.
 
It looked like that I found how to turn off those buttons, but when I turn them off nothing change...

vBDHkoT
 
You are using sumo plugin.

Disable these buttons from sumo config setting.
 
Go to the custom css in customize, or your theme settings.
Find the name of the element block, by right-clicking not he page and inspecting the element, this will tell you what the name is.
Go back to the custom css, and type

.nameOfClass.withDots.ToFill.Spaces {
display : none;
}
 
Back
Top