Do you have a WOFF2 version of xstore-icons-light.ttf? The TTF file is causing a 3 second render blocking delay on mobile according to PageSpeed Insights
This topic has 3 replies, 2 voices, and was last updated 4 minutes ago ago by Jack Richardson
Do you have a WOFF2 version of xstore-icons-light.ttf? The TTF file is causing a 3 second render blocking delay on mobile according to PageSpeed Insights
Hello, I have a performance issue with xstore-icons-light.ttf. This TTF file is causing a 3 second render blocking delay on mobile according to PageSpeed Insights. The file is located at /wp-content/themes/xstore/fonts/xstore-icons-light.ttf and weighs 31.62 KiB. Do you have a WOFF2 version of this file, or can you advise how to load it without blocking rendering? Thank you
Hello @Andrei Andrei,
You can the below code to disable these types of icon font that we use in our theme. Add the code to child theme functions.php
add_filter('etheme_preload_woff_icons', '__return_false')
add_filter('etheme_preload_woff2_icons', '__return_false')
Kind regards,
Jack Richardson
The 8theme’s team
You must be logged in to reply to this topic.Log in/Sign up