Home Forums WoodMart support forum …fonts/woodmart-font.woff?v=5.3.4

…fonts/woodmart-font.woff?v=5.3.4

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

    smtanriverdi321
    Participant

    …fonts/woodmart-font.woff?v=5.3.4

    this font causes the theme to load late. How do I fix it?

    #251336

    Artem Temos
    Keymaster

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to fix this. You need to replace https://yourURL.test/wp-content/themes/woodmart/fonts/woodmart-font.woff?v=5.2.0 with your specific font URL.

    function dns_prefetch_mobile() {
    	
    	echo "<link href='https://yourURL.test/wp-content/themes/woodmart/fonts/woodmart-font.woff?v=5.2.0' rel='preload' as='font' type='font/woff' crossorigin='anonymous'>";
    }
    add_action( 'wp_head', 'dns_prefetch_mobile', 0 );

    Regards

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