• Resolved bartb112

    (@bartb112)


    After the last update, its not alowed to upload een AI file.
    Before it was normal possible.
    The trust files is AI in called.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Glen Don Mongaya

    (@glenwpcoder)

    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.

    Thread Starter bartb112

    (@bartb112)

    Thanks for help, problem solved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘File not allowed’ is closed to new replies.