• I want to kill font awesome on my site entirely. I’ve added two wp_dequeue functions to functions.php in the child theme to get rid of loads from two other plugin vendors, yet the fontawesome load produced by Gutentor persists. How can I kill this? We do not use FontAwesome in our authoring at all.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor codersantosh

    (@codersantosh)

    Hello @elronaldo ,
    Can you try following code, let me know if this work for you?

    function prefix_remove_fontawesome() {
    	wp_dequeue_style( 'fontawesome' );
    	wp_deregister_style( 'fontawesome' );
    }
    
    add_action( 'enqueue_block_assets', 'prefix_remove_fontawesome', 999 );

    Best Regards!

Viewing 1 replies (of 1 total)
  • The topic ‘Kill Font Awesome Entirely’ is closed to new replies.