Viewing 1 replies (of 1 total)
  • Plugin Author Bas Schuiling

    (@basszje)

    Hi Jamie,

    I think I see the issue. The theme you are linking to is using an very outdated version of Font Awesome which has different names for the icons, so they don’t show. I’d recommend check / ask if they have an updated version.

    If not, you can use the following code snippet. Please note that this will prevent any icons coming from MaxButtons such as social sharing from working:

    add_filter('mb_fa_url', 'remove_fa_library'); 
    function remove_fa_library() 
    {
    	return false;
    }

    You can include this in your theme’s functions.php ( check if they have some option for custom code somewhere, otherwise it will be overwritten on every theme update ).

    • This reply was modified 9 years, 3 months ago by Bas Schuiling.
Viewing 1 replies (of 1 total)

The topic ‘Plugin conflicting with icons on site’ is closed to new replies.