Home Forums WoodMart support forum Custom Font Upload Reply To: Custom Font Upload

#136751

Hello,

Please add this code to the functions.php of the child theme

add_filter( 'upload_mimes', 'woodmart_upload_mimes', 100, 1 );
    function woodmart_upload_mimes( $mimes ) {
        if ( woodmart_get_opt( 'allow_upload_svg' ) ) {
            $mimes['svg'] = 'image/svg+xml';
            $mimes['svgz'] = 'image/svg+xml';
        }
        $mimes['woff'] = 'application/x-font-woff';
        $mimes['woff2'] = 'application/x-font-woff2';
        $mimes['ttf'] = 'application/x-font-ttf';
        $mimes['eot'] = 'application/vnd.ms-fontobject';
        return $mimes;
    }

Best Regards