Glen Don Mongaya
Forum Replies Created
-
@inndesign , can you check your Contact Form 7 – Mail Settings and make sure to add “[upload-file-343]” in Mail File attachment field? (see screenshot 1 )
Also, make sure to uncheck “Send Attachment as links?” under contact -> Drag 7 Drop Upload – Settings (see screenshot 2 )
screenshot 1 – https://snipboard.io/W9KGCz.jpg
screenshot 2 – https://snipboard.io/leSTqH.jpg@itsebigaming I cannot view the link need to login – https://portal.ehemalige-mmge.de/galerie/3454ttgdfh54z54zergd/
@@inndesign, I tried to debug but I’m having a problem identify the issue, it seems like there’s no css/js loaded on the theme. Is there an option on the “themefusion” panel to disable/enable js minifies or something?
Other thing, a screenshot of you contact form 7 mail 1 & 2 settings.
Thanks @itsebigaming for creating a new topic.
Can you add these code on your wp-config.php?
define( ‘WP_DEBUG’, true );
define( ‘WP_DEBUG_LOG’, true );After that, test the form to see if there’s any error.log or debug.log file on your server.
Also, I cannot identify the issue without checking the site, can you create a temporary page link where I can test?
Please also share a screenshot of your browser console error?
Forum: Reviews
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Great Plugin!!@mrpsycho98 , I will add that.
Thanks so much for your review.
Hello @coversil ,
I tried to replicate on my testing server but it’s all fine, I cannot replicate the issue.
1. When I click on “Remove” after it has finished uploading, it is not deleted for me, it hangs on “Delete”.
– I also tried in your site, the delete function seems fine.2. I limited the minimum and maximum to 2 files because I need my clients to upload only 2 files. For some reason when I try to add to the cart after uploading two files it writes to me “You only uploaded one file”
– I think there’s a plugin conflict between my plugin with “Extra Product Options” or “WooCommerce Side Cart”Try to deactivate one of those plugin and test the upload again so we can identify which plugin cause the issue.
Glen
Hello @jsutton88 ,
I tried the form but it seems fine, I cannot replicate the issue.
Can you check your email if you received my test?
Screenshot : https://snipboard.io/LdiqJx.jpg
“We’ve had the plugin working for quite a while now but it’s stopped working recently. It’s possible to upload single and pairs of images (usually) but anything more and it times out with a red bordered error – “There was an error trying to send your message. Please try again later.”
– Sometimes when you attached large files on email will take time to process and there’s a change that cf7 request timeout.– Try to use “send as links” option instead of attachment.
Please let me know.
Glen
- This reply was modified 4 years, 11 months ago by Glen Don Mongaya.
Hello @clementrectangle ,
There are javascript/css assets was not loaded properly.
See these:
https://at4.com/wp-content/plugins/contact-form-7/includes/js/index.js
https://at4.com/wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7/assets/js/codedropz-uploader-min.js
https://at4.com/wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7/assets/css/dnd-upload-cf7.cssMake sure to check and load those assets in order for the plugin to work.
1. Fix javascript error on your theme – see this ( https://snipboard.io/kDF8HG.jpg )
2. add this in your wp-config.php
define( ‘WPCF7_LOAD_JS’, true );
3. Try to check if there’s any other plugin for Contact Form 7 – try to deactivate it.
Please let me know.
Glen
@coversil , I will take a look and we’ll see if I replicate the issue.
Hello @yueshang ,
Make sure to install this plugin first – https://ww.wp.xz.cn/plugins/contact-form-7/
Thanks,
GlenHello @alessandromondelli ,
Currently it doesn’t attach file to the order email, it will only display as part of the content. (like this: https://snipboard.io/FfzvA3.jpg)
I will try to add that features in the future updates.
Thanks,
GlenHello @vectorizeimages ,
You need to add specific file types in this format jpeg|png|jpg|gif.
2 options to add filetypes.
1. Shortcode –
[mfile upload-file-983 filetypes:jpeg|jpg|png|gif|svg|docs|doc|pdf|mp4|mp4]2. Using cf7 tag generator – https://snipboard.io/u4SFXM.jpg
Please let me know.
Glen
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for WooCommerce] Settings not working@tinodesigns , Okay so you want to translate “Drag & Drop” & “Browse” text to german?
You need to install 3rd party plugin like WPML.
You may also try this plugin – https://ww.wp.xz.cn/plugins/loco-translate/
After activating, go to “Loco Translate -> Plugin settings”
See these:
https://snipboard.io/qbEh80.jpg
https://snipboard.io/1feBN8.jpg
https://snipboard.io/dgHaIk.jpgForum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Upload not WorkingHello @freshinger ,
Sorry for the late reply.
I tried to upload but it seems fine, can you explain the issue?
See this screenshot : https://snipboard.io/uBfLIE.jpg
Thanks,
GlenForum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Disable Auto Delete@matrixmedia , try this filter.
add_filter('dnd_cf7_auto_delete_files', 'cf7_adjust_auto_file_deletion'); function cf7_adjust_auto_file_deletion( $time ){ $time = 31536000; return $time; }31536000 = is equivalent to 1 year, you can adjust/change that according to your preference.
I think there’s a problem with ‘plugins_loaded’ hook which cannot remove existing action with my plugin.