Performance

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #268154

    ilir
    Participant

    Hello do you have any idea how to optimise this preload keys from wodmart

    Attachments:
    You must be logged in to view attached files.
    #268282

    Artem Temos
    Keymaster

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to preload our theme’s icons font file

    // Preload fonts for mobile theme
    
    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 );

    Kind Regards

    #271048

    testing123
    Participant

    This only works if you don’t use a CDN. With a CDN it will change the URL to cdn.yourdomain and google pagespeed will still give the recommendation to fix it.

    Are there any other solutions?

    #271142

    Artem Temos
    Keymaster

    Hello @testing123,

    Please, create a separate topic and send us your website link so we can check how it works on your side.

    Kind Regards

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