Hi, I want to the remove the entypo font version string, and found the way as show in the link below, but after adding the code to the functions.php, it didn’t work, would appreciate it if you can help to figure out, thanks!
https://kriesi.at/support/topic/removing-entypo-font-version-string/
Hi hsie!
Thank you for visiting the support forum.
Please edit functions.php, find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add the code Dude suggested to remove the version string:
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;
}
Cheers!
Ismael