Home › Forums › WoodMart support forum › Custom Fonts › Reply To: Custom Fonts
August 23, 2018 at 8:43 am
#73966

Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file
function woodmart_fonts_type( $mimes ) {
$mimes['ttf'] = 'application/x-font-ttf';
$mimes['eot'] = 'application/vnd.ms-fontobject';
return $mimes;
}
add_filter( 'upload_mimes', 'woodmart_fonts_type', 1000 );