Home Forums WoodMart support forum Connect Font Awesome 6

Connect Font Awesome 6

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #549721

    user-i
    Participant

    Hi. I only have Font Awesome 5 on the website, how do I update to Font Awesome 6 ? I need icons that 5 does not have, but 6 does. To be more precise, I need the Signal messenger icon to install it to the footer. I can download svg separately, but I would like to use FA instead

    #549845

    Luke Nielsen
    Keymaster

    Hello,

    For now, by default, we have only FontAwesome 5 available. You can try to use the code below to connect the FA6:

    add_action(
    	'wp_head',
    	function() {
    		echo '<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">';
    	}
    );

    Add it to the functions.php file in your child theme.

    Kind Regards

Viewing 2 posts - 1 through 2 (of 2 total)