Okay
  Public Ticket #3224644
Want to remove link to Font-Awesome
Closed

Comments

  • carolinekiel started the conversation

    Hi,
    I got order to remove all links to Font Awesome from our website or to host any content from FA locally on our server.

    Can you advise me on how to do so? I'm using a child theme, but as far, as I can see, the link is in the parent theme.

    If possible, I would prefer an "update-proof" way.


    Best regards,
    Caroline

  • [deleted] replied

    Hi Caroline,

    We use Font Awesome library to add social networks and other icons in the Kalium theme.

    Anyway, If you want to remove Font Awesome that Kalium offers you can add this PHP code to your functions.php file.

    // Disable FontAwesome in Kalium
    add_action( 'init', function() {
       unset( kalium()->enqueue->registered['fontawesome-css'] );
    }, 100 );

    Have a nice day!