Archived topic
How to load font awesome font CDN ?
4 replies · Started by Julee Kanarad on April 5, 2018
How to load from CND instead ?
Thank you very much.
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 :)
https://drive.google.com/file/d/173FZ8icPxHAw3Ue2CsDGgM_ssO5RkH0a/view?usp=sharing
Please look on image.
Thank you.
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' );
}