Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter phant0mmarine

    (@phant0mmarine)

    I added this code which I found in support which helped with the icons in the navigation:

    add_filter( ‘storm_social_icons_networks’, ‘storm_social_icons_networks’);
    function storm_social_icons_networks( $networks ) {
    $networks[‘twitter.com’][‘class’] = ‘msi-twitter’;
    return $networks;
    }

    The issue is still that its somehow conflicting with the themes use of “FontAwesome”.

    You will notice the problem with the fontawesome images above each blog topic.

    Please advise.

    Thread Starter phant0mmarine

    (@phant0mmarine)

    ???

    Thread Starter phant0mmarine

    (@phant0mmarine)

    Is there support for this plugin?

    Plugin Author Paul Clark

    (@pdclark)

    It looks like your theme is using the latest version of FontAwesome, while MSI is set to use the legacy version that supports IE8.

    Try using the filter from the readme to upgrade the FontAwesome version:

    add_filter( 'storm_social_icons_use_latest', '__return_true' );

    That should resolve it, and may also allow you to remove one of the two copies of FontAwesome. For example: https://wordpress.org/support/topic/dont-use-cdn

    wordpress.org forums are responded to by volunteers — plugins and forums both are provided off of good will and free time. 🙂

    Thread Starter phant0mmarine

    (@phant0mmarine)

    Hi Paul,

    Thank you, Worked perfect!

    Is there a donate button anywhere so I can compensate for your time?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Theme conflict with plugin?’ is closed to new replies.