Thanks David. This combined with Cloudflare, other optimisations etc is really helping!
Trying to further optimise once and for all.
1) We’ve removed query strings from static resources with the code below
/*** Remove Query String from Static Resources ***/
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
But this isn’t removing it from:
https://hoteliyo.com/wp-content/themes/uplift/css/font/fontawesome-webfont.woff2?v=4.6.3
https://hoteliyo.com/wp-content/themes/uplift/css/font/nucleo-general.ttf?ferlac
https://hoteliyo.com/wp-content/themes/uplift/css/font/nucleo-interface.ttf?nucelov10
How can we remove that from these theme files?