Been running Enfold for 6 months (currently 3.6.1) and have noticed constant 404s on entypo-fontello.woff through several upgrades and re-installs.
File is there, can s/ftp open it and all the other files in that folder, but browser reports “The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.” on that one and only file the .ttf and .svg are fine.
Rather than mess about trying to work out root cause would you provide a child config to suppress or ignore the entypo-fontello.woff file.
maybe it is concerning to that cors problematic !
Appreciated, but the CORS code in web.config has not affected the 404
Hi,
Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.
Thanks,
Rikard
Good news a webserver restart has activated the CORS code which has solved the 404 on entypo-fontello.woff.
Also have the version extension string trim mentioned in another thread active in child functions.php to help:
// *** help with the 404 on Entypo-Fontello.woff
add_filter('avf_default_iconfont','avia_change_default_icon_font_para', 10, 1);
function avia_change_default_icon_font_para($fonts)
{
$fonts['entypo-fontello']['append'] = '';
return $fonts;
}