Drag and Drop Multiple File Upload – Contact Form 7 - Version 1.3.5.1

Version Description

  • Bug - Quick Fix ( Unable to submit form when acceptance field is set )
    • Issue if "additional settings" section added this line: acceptance_as_validation: on
Download this release

Release Info

Developer glenwpcoder
Plugin Icon 128x128 Drag and Drop Multiple File Upload – Contact Form 7
Version 1.3.5.1
Comparing to
See all releases

Code changes from version 1.3.5 to 1.3.5.1

assets/js/dnd-upload-cf7.js CHANGED
@@ -47,7 +47,7 @@ jQuery(document).ready(function($){
47
  var $input = $('input:checkbox', $span);
48
 
49
  // If it's complete remove disabled attribute in button
50
- if( $span.hasClass( 'optional' ) || $input.is( ':checked' ) || $span.length == 0 ) {
51
  setTimeout(function(){ $('input:submit', $form ).removeAttr('disabled'); }, 1);
52
  }
53
 
47
  var $input = $('input:checkbox', $span);
48
 
49
  // If it's complete remove disabled attribute in button
50
+ if( $span.hasClass( 'optional' ) || $input.is( ':checked' ) || $span.length == 0 || $form.hasClass('wpcf7-acceptance-as-validation') ) {
51
  setTimeout(function(){ $('input:submit', $form ).removeAttr('disabled'); }, 1);
52
  }
53
 
drag-n-drop-upload-cf7.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: This simple plugin create Drag & Drop or choose Multiple File upload in your Confact Form 7 Forms.
7
  * Text Domain: dnd-upload-cf7
8
  * Domain Path: /languages
9
- * Version: 1.3.5
10
  * Author: Glen Don L. Mongaya
11
  * Author URI: http://codedropz.com
12
  * License: GPL2
@@ -21,7 +21,7 @@
21
  define( 'dnd_upload_cf7', true );
22
 
23
  /** Define plugin Version */
24
- define( 'dnd_upload_cf7_version', '1.3.5' );
25
 
26
  /** Define constant Plugin Directories */
27
  define( 'dnd_upload_cf7_directory', untrailingslashit( dirname( __FILE__ ) ) );
6
  * Description: This simple plugin create Drag & Drop or choose Multiple File upload in your Confact Form 7 Forms.
7
  * Text Domain: dnd-upload-cf7
8
  * Domain Path: /languages
9
+ * Version: 1.3.5.1
10
  * Author: Glen Don L. Mongaya
11
  * Author URI: http://codedropz.com
12
  * License: GPL2
21
  define( 'dnd_upload_cf7', true );
22
 
23
  /** Define plugin Version */
24
+ define( 'dnd_upload_cf7_version', '1.3.5.1' );
25
 
26
  /** Define constant Plugin Directories */
27
  define( 'dnd_upload_cf7_directory', untrailingslashit( dirname( __FILE__ ) ) );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Donate link : http://codedropz.com/donation
3
  Tags: drag and drop, contact form 7, ajax uploader, multiple file, upload, contact form 7 uploader
4
  Requires at least: 3.0.1
5
  Tested up to: 5.4.1
6
- Stable tag: 1.3.5
7
  Requires PHP: 5.2.4
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -41,16 +41,18 @@ Checkout available features on **PRO version**.
41
  - *(1 hour, 4 hours, 8 hours , days, months etc)*
42
  * Zip Files ( Compressed File )
43
  * Save Files to Wordpress Media Library
44
- * Change Upload Directory
 
45
  - Generated Name - Timestamp
46
  - Random Folder
47
  - By User
48
  - Custom Folder
 
49
  * Send to email as individual attachment, ZIP archive or as a links
50
  * Chunks Upload *( Break large files into smaller Chunks )*
51
  * Max Total Size *( of all Uploaded Files )*
52
  * Parallel/Sequential Upload *( Number of files to simultaneously upload )*
53
- * Change Filename Pattern ({filename}, {ip_address}, {random}, {post_id}, {post_slug}, etc.)
54
  * Automatically Optimize Images
55
  * Able to Resize/Crop image (ie: 800x800)
56
  * Improved Security
@@ -64,6 +66,10 @@ You can get [PRO Version here](https://www.codedropz.com/purchase-plugin/)!
64
  * [Drag & Drop Multiple File Upload - WPForms](https://www.codedropz.com/drag-drop-file-uploader-wpforms/)
65
  An extension for **WPForms** - Transform your simple file upload into beautiful **"Drag & Drop Multiple File Upload"**.
66
 
 
 
 
 
67
  == Frequently Asked Questions ==
68
 
69
  = How can I send feedback or get help with a bug? =
@@ -124,6 +130,10 @@ To install this plugin see below:
124
 
125
  == Changelog ==
126
 
 
 
 
 
127
  = 1.3.5 =
128
  * Fixed - nonce issues when using Cache plugins.
129
  * Fixed - German Translation for ( Drag & Drop File Upload ) text.
@@ -252,7 +262,7 @@ This version fixed minor issues/bugs and add multiple drag and drop fields in a
252
  This version fixed minor issues and bugs.
253
 
254
  = 1.2.2 =
255
- Added some usefull features.
256
 
257
  = 1.2.4 =
258
  Added new features and fixes.
3
  Tags: drag and drop, contact form 7, ajax uploader, multiple file, upload, contact form 7 uploader
4
  Requires at least: 3.0.1
5
  Tested up to: 5.4.1
6
+ Stable tag: 1.3.5.1
7
  Requires PHP: 5.2.4
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
41
  - *(1 hour, 4 hours, 8 hours , days, months etc)*
42
  * Zip Files ( Compressed File )
43
  * Save Files to Wordpress Media Library
44
+ * Change Upload Folder
45
+ - Contact Form 7 - Fields
46
  - Generated Name - Timestamp
47
  - Random Folder
48
  - By User
49
  - Custom Folder
50
+ * Change Wordpress Upload Directory
51
  * Send to email as individual attachment, ZIP archive or as a links
52
  * Chunks Upload *( Break large files into smaller Chunks )*
53
  * Max Total Size *( of all Uploaded Files )*
54
  * Parallel/Sequential Upload *( Number of files to simultaneously upload )*
55
+ * Change Filename Pattern ({filename}, {cf7-field-name}, {ip_address}, {random}, {post_id}, {post_slug}, etc.)
56
  * Automatically Optimize Images
57
  * Able to Resize/Crop image (ie: 800x800)
58
  * Improved Security
66
  * [Drag & Drop Multiple File Upload - WPForms](https://www.codedropz.com/drag-drop-file-uploader-wpforms/)
67
  An extension for **WPForms** - Transform your simple file upload into beautiful **"Drag & Drop Multiple File Upload"**.
68
 
69
+ **PLUGIN GUIDE - FREE VERSION**
70
+
71
+ [youtube https://www.youtube.com/watch?v=DvuvmzIImYo]
72
+
73
  == Frequently Asked Questions ==
74
 
75
  = How can I send feedback or get help with a bug? =
130
 
131
  == Changelog ==
132
 
133
+ = 1.3.5.1 =
134
+ * Bug - Quick Fix ( Unable to submit form when acceptance field is set )
135
+ - Issue if "additional settings" section added this line: acceptance_as_validation: on
136
+
137
  = 1.3.5 =
138
  * Fixed - nonce issues when using Cache plugins.
139
  * Fixed - German Translation for ( Drag & Drop File Upload ) text.
262
  This version fixed minor issues and bugs.
263
 
264
  = 1.2.2 =
265
+ Added some useful features.
266
 
267
  = 1.2.4 =
268
  Added new features and fixes.