I followed instructions and added extra snippet to allow font uploads to Media by adding this code to new snippet.
add_filter( ‘upload_mimes’, function( $mimes ) {
$mimes[‘woff’] = ‘application/x-font-woff’;
$mimes[‘woff2’] = ‘application/x-font-woff2’;
$mimes[‘ttf’] = ‘application/x-font-ttf’;
$mimes[‘svg’] = ‘image/svg+xml’;
$mimes[‘eot’] = ‘application/vnd.ms-fontobject’;
return $mimes;
} );
But when I try to upload .ttf file, it does not allow me to upload despite the the function. Here is the error message I get.
“Antenna Regular.ttf” has failed to upload.
Sorry, you are not allowed to upload this file type.
Are there any other ways to get that .ttf file into the website?