Home Forums WoodMart support forum PageSpeed Insights – problem with woodmart-font.woff Reply To: PageSpeed Insights – problem with woodmart-font.woff

#245969

Artem Temos
Keymaster

Hello,

You can add this <link tag to preload the font with the following PHP code. Place it to your functions.php file in the child theme and replace the URL with your woodmart-font file URL.

add_action(
	'wp_head',
	function () {
		echo '<link rel="preload" href="FILE_URL" as="style">';
	}
);

Kind Regards