Version Description
- Bugfix: On some setups, Dropdown field's default choices wouldn't be selected by default.
Download this release
Release Info
Developer | happyforms |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.18.1 |
Comparing to | |
See all releases |
Code changes from version 1.18.0 to 1.18.1
- core/templates/parts/frontend-select.php +1 -1
- happyforms.php +2 -2
- languages/happyforms.pot +2 -2
- readme.txt +8 -4
core/templates/parts/frontend-select.php
CHANGED
@@ -47,7 +47,7 @@
|
|
47 |
|
48 |
$option_value = isset( $option['value'] ) ? $option['value'] : $index;
|
49 |
$submissions_left_label = isset( $option['submissions_left_label'] ) ? ' ' . $option['submissions_left_label'] : '';
|
50 |
-
$selected = ( $value
|
51 |
$disabled = ( '' != $option['limit_submissions_amount'] && $option['submissions_left'] == 0 ) ? ' disabled' : '';
|
52 |
?>
|
53 |
<option value="<?php echo $option_value; ?>" <?php echo $selected; ?> <?php echo $disabled; ?> id="<?php echo esc_attr( $option['id'] ); ?>"><?php echo esc_attr( $option['label'] ); ?><?php echo $submissions_left_label; ?></option>
|
47 |
|
48 |
$option_value = isset( $option['value'] ) ? $option['value'] : $index;
|
49 |
$submissions_left_label = isset( $option['submissions_left_label'] ) ? ' ' . $option['submissions_left_label'] : '';
|
50 |
+
$selected = ( $value !== '' && $value == $option_value ) ? ' selected' : '';
|
51 |
$disabled = ( '' != $option['limit_submissions_amount'] && $option['submissions_left'] == 0 ) ? ' disabled' : '';
|
52 |
?>
|
53 |
<option value="<?php echo $option_value; ?>" <?php echo $selected; ?> <?php echo $disabled; ?> id="<?php echo esc_attr( $option['id'] ); ?>"><?php echo esc_attr( $option['label'] ); ?><?php echo $submissions_left_label; ?></option>
|
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.io
|
6 |
* Description: Form builder to get in touch with visitors, grow your email list and collect payments.
|
7 |
* Author: Happyforms
|
8 |
-
* Version: 1.18.
|
9 |
* Author URI: https://happyforms.io
|
10 |
* Upgrade URI: https://happyforms.io/upgrade
|
11 |
*/
|
@@ -22,7 +22,7 @@ if ( defined( 'HAPPYFORMS_UPGRADE_VERSION' ) ) {
|
|
22 |
/**
|
23 |
* The current version of the plugin.
|
24 |
*/
|
25 |
-
define( 'HAPPYFORMS_VERSION', '1.18.
|
26 |
|
27 |
if ( ! function_exists( 'happyforms_get_version' ) ):
|
28 |
|
5 |
* Plugin URI: https://happyforms.io
|
6 |
* Description: Form builder to get in touch with visitors, grow your email list and collect payments.
|
7 |
* Author: Happyforms
|
8 |
+
* Version: 1.18.1
|
9 |
* Author URI: https://happyforms.io
|
10 |
* Upgrade URI: https://happyforms.io/upgrade
|
11 |
*/
|
22 |
/**
|
23 |
* The current version of the plugin.
|
24 |
*/
|
25 |
+
define( 'HAPPYFORMS_VERSION', '1.18.1' );
|
26 |
|
27 |
if ( ! function_exists( 'happyforms_get_version' ) ):
|
28 |
|
languages/happyforms.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Happyforms (free) plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Happyforms (free) 1.18.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/happyforms/\n"
|
7 |
"Last-Translator: The Theme Foundry\n"
|
8 |
"Language-Team: The Theme Foundry\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: happyforms\n"
|
2 |
# This file is distributed under the same license as the Happyforms (free) plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Happyforms (free) 1.18.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/happyforms/\n"
|
7 |
"Last-Translator: The Theme Foundry\n"
|
8 |
"Language-Team: The Theme Foundry\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-09-02T13:20:18+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: happyforms\n"
|
readme.txt
CHANGED
@@ -5,11 +5,11 @@ Tags: contact form, contact form plugin, forms, form builder, custom form, intak
|
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 7.0
|
8 |
-
Stable tag: 1.18.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
12 |
-
|
13 |
|
14 |
== Description ==
|
15 |
|
@@ -143,12 +143,13 @@ Aw, honestly, the thought that you're writing about our contact form builder is
|
|
143 |
|
144 |
== Changelog ==
|
145 |
|
|
|
|
|
|
|
146 |
= 1.18.0 =
|
147 |
* Improvement: Forms are now automatically hidden after a successful submission, and a "Fill out this form again" link lets submitters submit again for better usability.
|
148 |
* Improvement: Control labels in the builder have been reworded for better clarity.
|
149 |
|
150 |
-
= 1.17.0 =
|
151 |
-
|
152 |
= 1.17.0 =
|
153 |
* Improvement: All sections in Style tab are now always visible for easier access to controls.
|
154 |
* Improvement: Choice based fields build interface has been tidied up and made more coherent.
|
@@ -961,6 +962,9 @@ Aw, honestly, the thought that you're writing about our contact form builder is
|
|
961 |
|
962 |
== Upgrade Notice ==
|
963 |
|
|
|
|
|
|
|
964 |
= 1.18.0 =
|
965 |
* Improved behavior after successful submission, minor tweaks and improvements.
|
966 |
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 7.0
|
8 |
+
Stable tag: 1.18.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
12 |
+
Contact form, newsletter form and payment form builder without the sucky stuff — lost emails, pesky spam, leaky privacy and outsourced support.
|
13 |
|
14 |
== Description ==
|
15 |
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= 1.18.1 =
|
147 |
+
* Bugfix: On some setups, Dropdown field's default choices wouldn't be selected by default.
|
148 |
+
|
149 |
= 1.18.0 =
|
150 |
* Improvement: Forms are now automatically hidden after a successful submission, and a "Fill out this form again" link lets submitters submit again for better usability.
|
151 |
* Improvement: Control labels in the builder have been reworded for better clarity.
|
152 |
|
|
|
|
|
153 |
= 1.17.0 =
|
154 |
* Improvement: All sections in Style tab are now always visible for easier access to controls.
|
155 |
* Improvement: Choice based fields build interface has been tidied up and made more coherent.
|
962 |
|
963 |
== Upgrade Notice ==
|
964 |
|
965 |
+
= 1.18.1 =
|
966 |
+
* Minor bugfixes.
|
967 |
+
|
968 |
= 1.18.0 =
|
969 |
* Improved behavior after successful submission, minor tweaks and improvements.
|
970 |
|