• hi ??

    thx for this plugin ??
    is there a way to deactivate the call for font awesome in your plugin because i load it elsewhere?

    thx a lot
    regards from austria

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

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 ‘Deactivate Font Awesome’ is closed to new replies.