@aranell The Simple Social Icons plugin does not appear to be active on your site right now, but it looks as though your theme overrides the new font that the plugin uses. You can find this code in the theme’s stylesheet:
.simple-social-icons ul li a {
display: inline-block;
box-sizing: content-box;
width: 1em;
border: 2px solid #333;
font-family: "ssi-icomoon";
font-weight: normal;
font-style: normal;
font-variant: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1em;
text-align: center;
text-decoration: none;
text-transform: none;
speak: none;
}
And change the font-family: "fontello";
line to read font-family: "ssi-icomoon";
.
If your theme reorders or modifies the icons in your functions.php
file using the ‘simple_social_default_glyphs’ filter, you will also need to update the icon glyph codes using this as a reference: https://github.com/copyblogger/simple-social-icons/blob/develop/simple-social-icons.php#L100
If you’re unsure about changing these things, it would be worth contacting the theme developer for help, and point them to this thread: https://stnsvn.com/support-policy/
@amgrove You can still reorder the icons; you just need to use the new glyph codes: https://github.com/copyblogger/simple-social-icons/blob/develop/simple-social-icons.php#L100
@developerwil It looks like a plugin or some custom code is altering the icon output on your site; some of your icons are using a font that’s unrelated to Simple Social Icons: https://d.pr/i/15vGG. Looking in custom theme and plugin files for the ‘simple_social_default_glyphs’ and ‘simple_social_default_profiles’ filters would be a good place to start in debugging this.
@laubuster Sorry to hear that you’re still not seeing the icons in your footer. For me they’re appearing in every browser I’ve tested. (Chrome, Firefox, iOS, IE9, IE10.) What browser and OS are you using? Have you tried other machines? As I can see the icons, this sounds like it could be browser or network -cache related.