One of my client’s wants a Contact Form with upload files.
To allow files bigger than 1Mb? WTF, I had to edit
wp-content/plugins/contact-form-7/modules/file.php
and comment
$allowed_size = 1048576; // default size 1 MB
add (or correct the value)
$allowed_size = 100048576;
Or you would simply use:
[file your-file filetypes:doc|docx|pdf limit:100mb]
😉