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

Version Description

  • Fixed: HTML emails not displaying correctly in Thunderbird
Download this release

Release Info

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

Code changes from version 1.1.4 to 1.1.4.2

assets/css/admin-builder-fields.css CHANGED
@@ -591,6 +591,7 @@
591
  height: 110px;
592
  font-size: 16px;
593
  line-height: 1.3;
 
594
  }
595
 
596
  #wpforms-panel-fields .wpforms-field.size-small textarea {
591
  height: 110px;
592
  font-size: 16px;
593
  line-height: 1.3;
594
+ width: 100%;
595
  }
596
 
597
  #wpforms-panel-fields .wpforms-field.size-small textarea {
includes/emails/class-emails.php CHANGED
@@ -375,7 +375,7 @@ class WPForms_WP_Emails {
375
 
376
  $field_item = $field_template;
377
  if ( $x === 1 ) {
378
- $field_item = str_replace( '<table style="border-top:1px solid #dddddd;"', '<table', $field_item );
379
  }
380
  $field_item = str_replace( '{field_name}', $field_name, $field_item );
381
  $field_value = apply_filters( 'wpforms_html_email_field_value', stripslashes( wp_specialchars_decode( $field['value'] ) ), $field, $this->form_data );
375
 
376
  $field_item = $field_template;
377
  if ( $x === 1 ) {
378
+ $field_item = str_replace( 'border-top:1px solid #dddddd;', '', $field_item );
379
  }
380
  $field_item = str_replace( '{field_name}', $field_name, $field_item );
381
  $field_value = apply_filters( 'wpforms_html_email_field_value', stripslashes( wp_specialchars_decode( $field['value'] ) ), $field, $this->form_data );
includes/emails/templates/field-default.php CHANGED
@@ -14,8 +14,7 @@
14
  // Exit if accessed directly
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
  ?>
17
-
18
- <table style="border-top:1px solid #dddddd;" align="left" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody>
19
  <tr><td style="color:#333333;padding-top: 20px;padding-bottom: 3px;"><strong>{field_name}</strong></td></tr>
20
  <tr><td style="color:#555555;padding-top: 3px;padding-bottom: 20px;">{field_value}</td></tr>
21
  </tbody></table>
14
  // Exit if accessed directly
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
  ?>
17
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-top:1px solid #dddddd; display:block;min-width: 100%;border-collapse: collapse;width:100%;"><tbody>
 
18
  <tr><td style="color:#333333;padding-top: 20px;padding-bottom: 3px;"><strong>{field_name}</strong></td></tr>
19
  <tr><td style="color:#555555;padding-top: 3px;padding-bottom: 20px;">{field_value}</td></tr>
20
  </tbody></table>
readme.txt CHANGED
@@ -158,6 +158,12 @@ Syed Balkhi
158
 
159
  == Changelog ==
160
 
 
 
 
 
 
 
161
  = 1.1.4 =
162
  * Added: Form general setting for "Submit Button CSS Class"
163
  * Added: Duplicate forms from the Forms Overview page (All Forms)
158
 
159
  == Changelog ==
160
 
161
+ = 1.1.4.2 =
162
+ * Fixed: HTML emails not displaying correctly in Thunderbird
163
+
164
+ = 1.1.4.1 =
165
+ * Fixed: Form builder textareas now displaying full width
166
+
167
  = 1.1.4 =
168
  * Added: Form general setting for "Submit Button CSS Class"
169
  * Added: Duplicate forms from the Forms Overview page (All Forms)
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.4
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.4';
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.4.2
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
54
  * @since 1.0.0
55
  * @var sting
56
  */
57
+ private $version = '1.1.4.2';
58
 
59
  /**
60
  * The form data handler instance.