Fontawesome loading problem

Hi there,

I have a site running at:

https://www.birdie-elektromosauto.hu/en/

When viewing from Safari, I notice a couple of issues.

  1. FONTAWESOME is not loading
  2. The language switcher is acting funky on both mobile and desktop. Takes about 5-10 clicks to change.

This Ressource ist not existing. Try to load it in your Browser https//use.fontawesome.com/releases/v5.8.1/css/all.css?ver=5.1.1

Hi there,

Thanks for the tip, but for one, it only doesnt load on the latest version of Safari, that being 12.1, a friend of mine has no trouble with it on 12.03.

Also, I added this code to the functions.php, so it should have no issue loading:


    function load_fontawesome_style() {
  wp_enqueue_style( 'fontawesome', '//https://use.fontawesome.com/releases/v5.8.1/css/all.css');

}
add_action( 'wp_enqueue_scripts', 'load_fontawesome_style' );

Hey @Pbalazs89,

Please try this:

function load_fontawesome_style() {
  wp_enqueue_style( 'fontawesome', 'https://use.fontawesome.com/releases/v5.8.1/css/all.css');

}
add_action( 'wp_enqueue_scripts', 'load_fontawesome_style' );

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.