Glen Don Mongaya
Forum Replies Created
-
Hi @anur1993 ,
Thanks for reaching out.
I tried to my chrome normal browser and I cannot replicate the issue using drag & drop or browse.
As you can see on the video here.
Can you please create a video or demo on your end, maybe it’s from the browser or something.
Also, may I know your current chrome version?
Glen
Hello @jigsawmark56 ,
Thanks for reaching out.
Can you please provide a screenshot for both orders from the customers so we can check?
We are not sure what caused the issue, as this is the first time that someone reported an issue like this.
Glen
@karbou I’m aware of the error, will fix the error on my next update.
Thank You.
Hello @anur1993 ,
Thanks for reaching out!
Currently, we don’t have a JS/PHP filter for successful uploads in the free version, but we’ll consider adding it in the next update.
Glen
Forum: Plugins
In reply to: [NSFW] [Drag and Drop Multiple File Upload for WooCommerce] uploaded filesHey @jvf2005 ,
Sorry for the late reply, I didn’t notice the notification email.
Currently we only offer on pro version for the auto file deletion using cron schedule.
On the free version this should be deleted manually using FTP/Cpanel.
However I can send you a script to add in your theme/functions.php file to auto delete files and save more storage from your server.
Please let me know.
- This reply was modified 1 year, 10 months ago by Glen Don Mongaya.
- This reply was modified 1 year, 10 months ago by Yui.
I asked for your form settings because I tried in my setup and it seems working fine.
Here’s the video – https://drive.google.com/file/d/1_Eljty9mOzqeR7UVmN3J5STEW1ltyTMe/view?usp=sharing
It will only validate if the uploader is visible or the condition group shows based on the plugin conditional value.
Here’s my form & conditional code.
<label>Firstname</label>
[text firstname]
<label>Lastname</label>
[text lastname]
<label>Menu</label>
[select menu-13 include_blank "Menu 1" "Menu 2"]
[group upload-1 clear_on_hide]
[text menu]
<p>Upload (*)</p>
[mfile* upload-file-317]
[/group]
[submit "Send"]show [upload-1] if [menu-13] equals "Menu 1"Please let me know.
Hello @dominiccadle95 ,
Thanks for reaching out.
Could you please share me your ‘Form’ tab code that it’s under in Contact Form 7? so I can replicate or test in my end.
Glen
Also, please try to add this code in your theme/functions.php file and see if this will fix the issue.
add_filter('dnd_cf7_ajax_url', function(){
return trailingslashit( site_url() ) . '?ajax-dnd-upload=true';
});
add_action( 'init', function() {
if ( isset( $_GET['ajax-dnd-upload'] ) && 'true' === $_GET['ajax-dnd-upload'] ) {
if ( ! empty( $_REQUEST['action'] ) && is_scalar( $_REQUEST['action'] ) ) {
if ( has_action( 'wp_ajax_' . $_REQUEST['action'] ) ) {
do_action( 'wp_ajax_' . $_REQUEST['action'] );
}
}
die('0');
}
});Please let me know.
Hi @udrae ,
Thanks for reaching out.
It seems the issue occurred on all browsers, I tested it and I can replicate the issue.
The issue is related to error 500 when a plugin requesting to AJAX and return an invalid or error response. (screenshot: https://ibb.co/hsVMr7S)
Can you please check if there’s any error.log or debug.log file in your public_html or wp-content folder? and send it to me.
Try also to add this in your wp-config.php file.
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );Please let me know.
Hello @charlotte83 ,
1. Make sure to manually add
filetypes:webpto the [mfile] shortcode parameter.For example: [mfile uploader-xxx filetypes:webp|jpeg|jpg|gif|png|pdf|docx|odt|doc|heic|zip]
Or you can do via cf7 form tag generator. (see screenshot below)

If you have already added the (webp) extension but it’s still not working, it might be related to mime types.
Try to add the code below in your
child/themefunctions.php file.function add_webp_mime_types($mime_types) {
$mime_types['webp'] = 'image/webp';
return $mime_types;
}
add_filter('mime_types', 'add_webp_mime_types');2. For max size limit, if not set the default is 10MB so you should configure it manually to match the max limit in your WordPress media library.
To do that, you will need to add
limit:BYTES_FORMATparameter in [mfile] shortcode, or you can configure it using CF7 form tag generator.Example: [mfile uploader-xxx filetypes:webp|jpeg|jpg|gif|png|pdf|docx|odt|doc|heic|zip limit:104857600]
Note: limit should be bytes format you may use MB to Bytes converter in Google (ie: 104857600 = 10MB)
For more information you may follow this guide – https://www.youtube.com/watch?v=DvuvmzIImYo
Please let me know if you have any other questions.
Thanks.
Hi @simongabaxial thanks for reaching out.
Currently, the error position is fixed at the bottom on each upload field.
May I know your suggestion, or would you like to add the error message above? Please let me know.
Glen
@marioski I’ve already released a new version.
Did you have a chance to check? If it’s already fixed, we’ll close this topic.
Please let me know.
Hello @hakan6ok ,
Thanks for the info.
I checked your site and I found out on the browser inspect element that there’s a JS error and it’s related to contact form 7 index.js file. (Screenshot: https://ibb.co/2k57yxf)
This error prevent our plugin to work that’s why it didn’t display link on your email.
In order to fix it you will need to identify what plugin caused the error by activating/deactivating any plugin related to contact form 7. ( I suspect maybe the “Material Design for Contact Form 7” it creating another element for acceptance checkbox )
Please let me know.
Glen
Hi, thanks for your confirmation.
Can you please send us or paste the copy of your site health?
It’s under WordPress admin dashboard “Tools -> Site Health -> Info” and click “Copy site info …” button.
Thanks.
Forum: Reviews
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Works like a charm.Hi @larsactionhero ,
Thanks for your review, I really appreciate it.
For the record, our plugin has already been converted to native JavaScript by default. I have added an option so users can switch between native JavaScript and jQuery in case there is a conflict with the theme or another plugin, allowing them to still use jQuery.
The settings is under “Contact -> Drag & Drop Upload” use jQuery option.
You may check our JS assets on the path below.
Native JS –
/assets/js/codedropz-uploader-min.js
jQuery –/assets/js/codedropz-uploader-jquery.jsMore information about the release can be found here – https://ww.wp.xz.cn/plugins/drag-and-drop-multiple-file-upload-contact-form-7/#developers and see 1.3.7.0.
Glen