Site logo

Archived topic

How to load font awesome font CDN ?

4 replies · Started by Julee Kanarad on April 5, 2018

Viewing posts 1–5 of 5

That's coming from Elementor, so you'd have to ask them if it's possible to turn it off or change the source.

If they tell you how to turn it off, but not include it from a CDN, let me know and I'll help get that part done :)

Ugh, theme related, even though it's pointing to Elementor directly in the URL.

Let's try this PHP function:

add_action( 'wp_enqueue_scripts', 'tu_custom_font_awesome', 100 );
function tu_custom_font_awesome() {
    wp_dequeue_style( 'font-awesome' );
    wp_enqueue_style( 'font-awesome', 'URL TO CDN' );
}
This archived topic is closed to new replies.