[ad_1]
Hello @bartb112,
Our latest was only a minor changes and it’s not related to upload process.
Can you provide an exact link or product page where the upload form will appear?
Also, share a screenshot of your WooCommerce -> Settings -> File Uploads.
Lastly, can you try and add the code below in your theme/functions.php file or any code snippet plugin.
add_filter( 'upload_mimes' , 'dnd_cf7_add_custom_mimes');
function dnd_cf7_add_custom_mimes($mimes){
$mimes['eps'] = 'application/postscript';
$mimes['ai'] = 'application/postscript';
return $mimes;
}Thanks.
Thanks for help, problem solved.
