Home › Forums › WoodMart support forum › Font from TaypeKit › Reply To: Font from TaypeKit
June 22, 2018 at 7:44 pm
#64388
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file and upload again
add_filter( 'upload_mimes', 'woodmart_upload_mimes', 100, 1 );
function woodmart_upload_mimes( $mimes ) {
$mimes['svg'] = 'image/svg+xml';
$mimes['svgz'] = 'image/svg+xml';
$mimes['woff'] = 'font/woff';
$mimes['woff2'] = 'font/woff2';
$mimes['ttf'] = 'font/ttf';
$mimes['eot'] = 'font/eot';
$mimes['svg'] = 'font/svg';
$mimes['woff'] = 'application/x-font-woff';
$mimes['ttf'] = 'application/x-font-ttf';
$mimes['eot'] = 'application/vnd.ms-fontobject';
}