• Resolved fkoomek

    (@fkoomek)


    Hi.

    How to disable Font Awesome library?

    I already use Font Awesome library on my website.

    I don’t need it. It seems that it’s not even registered as a style so I cannot remove it easily.

    Thank you.

Viewing 1 replies (of 1 total)
  • Plugin Author Trusty Plugins

    (@trustyplugins)

    Hi @fkoomek ,

    Thanks for the contact.

    You can use this function to dequeue font awesome style.

    add_action( 'wp_enqueue_scripts', 'custom_dequeue_styles' );
    function custom_dequeue_styles() {
    wp_dequeue_style( 'tc-caf-font-awesome-style');
    wp_deregister_style( 'tc-caf-font-awesome-style' );
    }

    Thanks,

    Trusty Plugins Team

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