Home Forums WoodMart support forum Connect Font Awesome 6 Reply To: Connect Font Awesome 6

#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