Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Paul Clark

    (@pdclark)

    That colored icon isn’t a part of the Menu Social Icons plugin. Are you running some other plugin that detects social links, or perhaps does your theme have social icons set in CSS or the WordPress admin that are conflicting?

    You can find out where that other icon is stored (the blue one) by right-clicking on the icon and selecting “Inspect Element”. I’d do it for you, but I need the address of your site.

    Plugin Author Paul Clark

    (@pdclark)

    PS: A likely culprit might be if your theme uses the class .twitter for its own icons. You would need to remove that CSS from your theme.

    Plugin Author Paul Clark

    (@pdclark)

    Also, without being able to look at your site’s code… and if you don’t know where in your theme that icon is coming from, there’s a good chance that adding this code to your theme’s functions.php might solve your issue:

    add_filter( 'storm_social_icons_networks', 'storm_social_icons_networks');
    function storm_social_icons_networks( $networks ) {
    	$networks['twitter.com']['class'] = 'msi-twitter';
    	return $networks;
    }
    Thread Starter fpats

    (@fpats)

    Yes that worked.

    thanks so much, it’s looks great!

    Plugin Author Paul Clark

    (@pdclark)

    Great! Glad that did it for you. ??

    Please take a moment to submit a short review. It helps a lot!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Facebook works, Twitter is a mess’ is closed to new replies.