Contact Form by WPForms – Drag & Drop Form Builder for WordPress - Version 1.1.5

Version Description

  • Changed: HTML Email template footer text appearance
Download this release

Release Info

Developer jaredatch
Plugin Icon 128x128 Contact Form by WPForms – Drag & Drop Form Builder for WordPress
Version 1.1.5
Comparing to
See all releases

Code changes from version 1.1.5.1 to 1.1.5

assets/js/wpforms.js CHANGED
@@ -221,6 +221,7 @@
221
  total = parseFloat(total)+parseFloat(amount);
222
  }
223
  });
 
224
  return parseFloat(total).toFixed(2);
225
  }
226
  // Update Total field(s) with latest calculation
221
  total = parseFloat(total)+parseFloat(amount);
222
  }
223
  });
224
+ console.log( total );
225
  return parseFloat(total).toFixed(2);
226
  }
227
  // Update Total field(s) with latest calculation
readme.txt CHANGED
@@ -158,9 +158,6 @@ Syed Balkhi
158
 
159
  == Changelog ==
160
 
161
- = 1.1.5.1 =
162
- * Fixed: Debug output from wpforms.js
163
-
164
  = 1.1.5 =
165
  * Changed: HTML Email template footer text appearance
166
 
158
 
159
  == Changelog ==
160
 
 
 
 
161
  = 1.1.5 =
162
  * Changed: HTML Email template footer text appearance
163
 
trunk/includes/admin/class-settings.php CHANGED
@@ -220,7 +220,10 @@ class WPForms_Settings {
220
  </label>
221
  <input type="text" name="email-header-image" id="wpforms-settings-email-header-image" class="wpforms-settings-upload-image-value" value="<?php echo esc_url_raw( $this->get( 'email-header-image' ) ); ?>" />
222
  <a href="#" class="button button-secondary wpforms-settings-upload-image"><?php _e( 'Upload Image', 'wpforms' ); ?></a>
223
- <p class="description"><?php _e( 'Upload or choose a logo to be displayed at the top of email notifications.', 'wpforms' ); ?></p>
 
 
 
224
  </td>
225
  </tr>
226
  <tr>
220
  </label>
221
  <input type="text" name="email-header-image" id="wpforms-settings-email-header-image" class="wpforms-settings-upload-image-value" value="<?php echo esc_url_raw( $this->get( 'email-header-image' ) ); ?>" />
222
  <a href="#" class="button button-secondary wpforms-settings-upload-image"><?php _e( 'Upload Image', 'wpforms' ); ?></a>
223
+ <p class="description">
224
+ <?php _e( 'Upload or choose a logo to be displayed at the top of email notifications.', 'wpforms' ); ?><br>
225
+ <?php _e( 'Recommended size is 300x100 or smaller for best support on all devices.', 'wpforms' ); ?>
226
+ </p>
227
  </td>
228
  </tr>
229
  <tr>
trunk/readme.txt CHANGED
@@ -158,6 +158,9 @@ Syed Balkhi
158
 
159
  == Changelog ==
160
 
 
 
 
161
  = 1.1.5.2 =
162
  * Fixed: reCAPTCHA cutting off with full form theme
163
 
158
 
159
  == Changelog ==
160
 
161
+ = 1.1.5.3 =
162
+ * Changed: Email Header Image setting description to include recommended sizing
163
+
164
  = 1.1.5.2 =
165
  * Fixed: reCAPTCHA cutting off with full form theme
166
 
trunk/wpforms.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
6
  * Author: WPForms
7
  * Author URI: https://wpforms.com
8
- * Version: 1.1.5.2
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
@@ -54,7 +54,7 @@ final class WPForms_Lite {
54
  * @since 1.0.0
55
  * @var sting
56
  */
57
- private $version = '1.1.5.2';
58
 
59
  /**
60
  * The form data handler instance.
5
  * Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
6
  * Author: WPForms
7
  * Author URI: https://wpforms.com
8
+ * Version: 1.1.5.3
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
54
  * @since 1.0.0
55
  * @var sting
56
  */
57
+ private $version = '1.1.5.3';
58
 
59
  /**
60
  * The form data handler instance.
wpforms.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
6
  * Author: WPForms
7
  * Author URI: https://wpforms.com
8
- * Version: 1.1.5.1
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
@@ -54,7 +54,7 @@ final class WPForms_Lite {
54
  * @since 1.0.0
55
  * @var sting
56
  */
57
- private $version = '1.1.5.1';
58
 
59
  /**
60
  * The form data handler instance.
5
  * Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
6
  * Author: WPForms
7
  * Author URI: https://wpforms.com
8
+ * Version: 1.1.5
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
54
  * @since 1.0.0
55
  * @var sting
56
  */
57
+ private $version = '1.1.5';
58
 
59
  /**
60
  * The form data handler instance.