godaddy-wordpress / contact-widgets

Beautifully display social media and contact info on your website with these simple widgets.
https://wordpress.org/plugins/contact-widgets/
GNU General Public License v2.0
14 stars 16 forks source link

Social Media Icons not Appearing #70

Closed pbuerk closed 5 years ago

pbuerk commented 5 years ago

The social media icons in my Footer is not displaying the icons but rather it is showing just a square for each of them. It was working perfectly fine before, and I do not think I made any updates to other plugins that would have caused this. Any suggestions on how to fix this? See screenshot below.

Social Icon Issue
EvanHerman commented 5 years ago

@pbuerk Do you have a link to the site in question? This is most likely a collision with another theme or plugin you have that is also loading a different version of Font Awesome.

pbuerk commented 5 years ago

@EvanHerman Yes, I figured it is something like that but cannot seem to find out what theme that may be. I have not added any new ones that resulted in it to stop working. This link is the following:

https://www.scramblersrestaurants.com

pbuerk commented 5 years ago

@EvanHerman
I was able to find the answer online. I am using the beaver builder plugin and needed to make sure it was using FA5, it was set to FA4. So it is all good now.

Thanks for your help.

EvanHerman commented 5 years ago

@pbuerk Ah, yes that would do it. No problem at all - glad that it wasn't something larger at play. Hope you have a great week!

suzyvee commented 5 years ago

eva how did you change the beaver builder to FA5?

EvanHerman commented 5 years ago

@suzyvee You can find some instructions in the Beaver Builder documentation here, under the section titled "Add a filter to load FA 5 Pro from a URL": https://kb.wpbeaverbuilder.com/article/732-add-font-awesome-5-pro-icons

Add a filter to load FA 5 Pro from a URL If you have downloaded the Font Awesome 5 Pro icon set and unzipped it onto a server, you can add a filter to point to the server URL and path.

In your child theme, open functions.php for editing. Append the following line to the file:

add_filter( 'fl_get_fa5_url', function() { return 'HTTP://EXAMPLE.COM/PATH/all.css'; } );

Replace HTTP://EXAMPLE.COM with the URL for your server, and replace PATH with the path to the all.css file in the Font Awesome 5 Pro folder. Save the file.

suzyvee commented 5 years ago

what if I don't have a pro account?