Glen Don Mongaya
Forum Replies Created
-
Hello @davidecho, thank you for understanding. I haven’t purchased the plugin because I don’t have a real use case for it on my end.
Maybe you could email the zip file glenmongaya @ gmail.com so I can test? if that’s possible.
Please let me know.
Thanks, can you provide a screenshot of all active plugins?
Also, make sure the contact form 7 plugin in installed and activated.
Hello @adsim ,
Thanks for reaching out.
Upon checking, it appears there is a dot (.) in the path. I’m not sure why it’s there—possibly due to the server setup or your current settings.We have a temporary solution by adding this custom filter/snippet in your “/theme-{child}/functions.php” or if you have code snippet plugins installed.
add_filter('dnd_cf7_after_upload', function( $files ) {
if ( strpos( $files['path'], '.' ) === 0 ) {
$files['path'] = ltrim( $files['path'], '.' );
}
return $files;
});I will do further investigation to replicate the issue.
Could you please provide a following details:
1. Screeenshot of Contact -> Drag & Drop Upload settings.
2. Go to “Tools -> Site Health -> Info” then click “Copy site info to clipboard”, paste it in your reply.Thank you.
Hi @meli20025 ,
Could you please check and see if there’s any error.log or debug.log file in your public_html or inside wp-content folder?
Also, if you can provide a screenshot of the error so that I can check that would be great.
Glen
Hello,
Thanks for reaching out.
I don’t have the premium version of the Integrate Google Drive plugin. I’ll check if I can get a copy of it and test it to identify the issue and add compatibility.
I’ll let you know.
Glen
Hi @timboo00 ,
Thanks for reaching out, have you tried adding the code “above” in your functions.php file?
Please let me know.
Glen
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] German translationsThanks @dscqbus I really appreciate your time and effor.
I’m not familiar with how the translation in WordPress I cannot see where to approve them as you can see on the screenshot – https://snipboard.io/6WjeRC.jpg other translation before automatically approved.
I can also add you as contributor if that will work.
Hello @songgwp ,
Thanks for reaching out and providing all the details.
Upon checking I noticed that the file upload was outside of the <form> tag, can you check and see if there’s any way to move the file upload inside form.cart.
May I know if you are using custom elementor widget for your single page? or made any customization or something?
Try default template of WooCommerce instead of elementor widget so we can figure out the issue.
Please let me know.
Glen
Hi @rimigeek ,
Thanks for reaching out. Yes, that was a typo, and I’m glad you brought it to my attention.
I will fix it in our next update.
Glen
On several email servers you cannot attach large files due to their limitation (e.g: gmail max 25mb), enabling this option will only display file links instead of attaching the files directly to the email. Files on the server will also not be deleted.
Try to add this code in your theme/functions.php file or if you have code snippet plugin installed.
add_filter('dnd_cf7_auto_delete_files', 'cf7_adjust_auto_file_deletion');
function cf7_adjust_auto_file_deletion( $time ){
$time = 86400;
return $time;
}You can also completely disable the auto delete features by going to Contact -> Drag & Drop Upload then check “Don’t delete files” option.
Please let me know if you have any other question.
Hello @forusak , thanks for reaching out.
Could you please provide the following information so we can check.
- Screenshot of mail 1 and mail 2 settings
- Current version of cf7 and drag & drop file upload plugins
- Screenshot of all active plugins specially if there’s any other add-on that’s related to contact form 7.
Please let me know.
Forum: Reviews
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Doesn’t workThanks, I appreciate your review. It would be helpful if you could post a topic here: https://ww.wp.xz.cn/support/plugin/drag-and-drop-multiple-file-upload-contact-form-7/. We might be able to help identify the issue.
Hi @raulsilvaitpro ,
Maybe the file was deleted before the user placed the order, our plugin will automatically deleted temporary files after a couple of hours if user leave the browser or did not continue the process. this will clean up the server for spam uploads or temporary files.
Try to add this code in your theme/functions.php file
add_filter('dndmfu_wc_time_before_auto_deletion', 'codedropz_auto_delete_adjustment');
function codedropz_auto_delete_adjustment( $time ) {
$time = 86400; // 1 week
return $time;
}If it happens on several customers just let me know so I can conduct and investigation.
Thanks.