Glen Don Mongaya
Forum Replies Created
-
Hi @takevalue ,
Sorry for the late reply.
It looks like there’s a conflict with the JS script I’m not sure if it’s from the other plugin or in the theme.
Can you please try to deactivate other plugin/themes (one at a time) so we can identify which plugin or theme cause the issue?
Thanks.
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Custom validationHello @mrayoub86 ,
You can try and use this filter
Example below to check if files is empty.
add_filter('wpcf7_validate_mfile', 'custom_file_validation_filter', 20, 2 ); add_filter('wpcf7_validate_mfile*', 'custom_file_validation_filter', 20, 2 ); function custom_file_validation_filter( $result, $tag ) { $name = $tag->name; if( empty( $_POST[ $name ] ) && $tag->is_required() ){ $result->invalidate( $tag, 'File upload is required'); return $result; } return $result; }@alexalistar You can override the min and max on individual product on our pro version.
See this : https://snipboard.io/IyV9nR.jpg
Please let me know if there’s any issue or question.
Thanks.
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Plugin not workingHi @simocalca96 ,
May I know the exact link of the page where the form was added? it looks like your site not yet fully build.
Please let me know so I can check.
Thanks,
GlenHi @maximbelenkii ,
You can access the path of the files by accessing the $posted_data[‘your-upload-name’]
This will return something like this.
/wpcf7-files/upload-2.jpg
/wpcf7-files/upload-2.jpgAnd you can add the full url of your site something like “http://example.com/wp-content/uploads”
Your-upload-name should match the upload field name in your contact form 7.
Please let me know.
Regards,
GlenHello @navasahmed ,
Thanks, I received your email.
I’m currently updating so I can release a new version that includes mime type validation.
My apology for the delay, expect an update within this week.
Thanks,
GlenForum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] File types and sizeHello @raznov ,
If the limit is not provided on the tag the default is only 10MB.
If you will set a limit example: [mfile upload-file-433 limit:20971520] this is an example of 20MB.
Also make sure you set the limit not exceeding your hosting provider.
Please let me know.
Hi @oemilio16 ,
Thanks for using our plugin.
Unfortunately our plugin doesn’t support instagram/facebook browser because there’s a certain limitation on the said browser, it may disabled for security reason. Our plugin will only work on standard browser like chrome,safari, firefox.
I’m still looking for a solution in order to work on instagram browser.
Thanks,
GlenForum: Plugins
In reply to: [Drag and Drop Multiple File Upload for WooCommerce] Mismatching order imagesThanks for the screenshot.
I will investigate this issue on our local and staging server.
But so far no one reported an issue related to this before, give us more time to test it.
I will get back to you.
Hi @brettpolakowski ,
I checked your site and it seems you deactivated my plugin. I think it’s configuration error.
Make sure to add file size limit in bytes without any word.
Please let me know.
Regards,
GlenHi @rmcasaca ,
There’s no option to change the color of the text in the admin, but it’s possible using custom css.
Please add this css in your theme/style.css file.
.codedropz-upload-inner h3{ color: #000; }Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for WooCommerce] Mismatching order imagesHello @daamanmundra ,
Are you using a free or pro version?
Can you please share me a screenshot of the issue? maybe it’s files has the same file name or something?
Glen