Glen Don Mongaya
Forum Replies Created
-
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Custom Progress BarHi @bb99 ,
Currently, the template was embedded in JS file and there’s no hook or event for now.
The only way to change the progress bar is via css.
I will add an event or hook in the future release.
Thanks
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] NEW TABLEHello @olivier1378 ,
Yes, it’s possible but that’s requires custom coding, currently our plugin doesn’t save any data to the database.
In order to achieve that first your need get the files and run this hook.
add_action('wpcf7_mail_sent', function ( $cf7 ) { // Run code after the email has been sent print_r( $_POST['upload-file-123'] ); //get the list of files (example only) });- This reply was modified 3 years, 9 months ago by Glen Don Mongaya.
Hi @gima ,
Yeah, I can see the issue. It’s probably conflict with another plugin.
What other plugins you are using that is related to contact form 7?
Can you please share me a screenshot of all active plugins?
Thanks.
- This reply was modified 3 years, 9 months ago by Glen Don Mongaya.
Hi @gima ,
I treid to upload the file on your site and it seems working.
Maybe it’s only a cache issue, can you try with different browser or clear your wordpress cache?
See my screenshot – https://snipboard.io/Jg2tyz.jpg
Please let me know.
Thanks.
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Form added via AJAXNo problem, I’ glad it worked.
I will now mark as resolved this thread.
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Form added via AJAXHello @bb99 ,
Try to call this function in your javascript on order to render the upload field.
window.initDragDrop();
Thanks, please let me know.
Hello @ahmetd97 ,
Thanks for the link.
I tried to test and add a couple of images and I confirmed in email that it doesn’t attach any file.
Can you try and use the default upload of contact form and see if you still encounter any issue?
Also, try to display links in email instead of attaching them (see here – https://www.youtube.com/watch?v=DvuvmzIImYo&t=232s)
Please let me know.
Thanks, I’ve checked your site and I can see that you have already figured out the issue.
I can now upload pdf, doc and docx file.
Hello @lucari ,
Currently there’s no features for limiting the size or dimensions of the image only the file size.
It’s a great feature to add, maybe in the future I can include this.
Thanks.
Forum: Plugins
In reply to: [Shipping Live Rates for USPS for WooCommerce] Add to cart Ajax slow downHere you can see the video if plugin is activated and deactivated performance difference.
Hey @ahmetd97 ,
Thanks for the screenshots, looks like your settings are correct.
Can you add my email ([email protected]) as recipient so I make a test.
Glen
Hi @davideconsor ,
Can you also share a screenshot of your Contact -> Drag & Drop Upload settings?
May I know what is your email recipient ? is gmail or something?
And lastly, what is the total size your file.
Please let me know.
Thanks
Hey @chevan777 , can you please explain the issue.
I have tried and it seems working (see this- https://snipboard.io/oSL3yK.jpg)
Thanks.
Hey @navasahmed , will take a look again today.
Hello @samot80 ,
Yes you can remove the script from my plugin.
You may try this for js
if ( !is_page(array( 'contacto' ) )) { wp_deregister_script( 'contact-form-7'); wp_dequeue_script( 'codedropz-uploader' ); }and for css.
if ( !is_page(array( 'contacto' ) )) { wp_deregister_style( 'contact-form-7'); wp_dequeue_style('dnd-upload-cf7'); }