• I’m using custom icons, but strangely the plugin keeps loading the full FontAwesome library, which is no longer needed.

    Is there any way to not load FontAwesome, i.e. disable it completely?

    Thank you in advance.

Viewing 1 replies (of 1 total)
  • Plugin Author Happy Coders

    (@happy-coders)

    Hello there,

    Thank you for writing to us. To remove the loading of fontawesome, please add below code in your active theme’s functions.php file.

    
    add_action( 'wp_enqueue_scripts', 'mywptheme_child_deregister_styles', 11 );
    function mywptheme_child_deregister_styles() {
    	wp_dequeue_style( 'cld-font-awesome' );
    
    }
    

    Please let us know if provided code works or not.

    Regards,
    WP Happy Coders

Viewing 1 replies (of 1 total)
  • The topic ‘Remove FontAwesome’ is closed to new replies.