Comments carolinekiel started the conversationFebruary 5, 2023 at 7:04pmHi,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] repliedFebruary 6, 2023 at 8:07amHi 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! Sign in to reply ...
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
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.
Have a nice day!