Skip Navigation

[Resolved] Font Awesome not working after update

This support ticket is created 7 years, 1 month ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 1 reply, has 1 voice.

Last updated by nereaD 7 years, 1 month ago.

Author
Posts
#580574

Hi there,

I just updated toolset plugins and suddenly all my font awesome icons disappeared.
I am using Genesis theme.

Is it related with the update?

Thank you.

#580577

I added this to my functions.php and it worked:

//* Add Font Awesome Support
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
function enqueue_font_awesome() {
	wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' );
}