Version Description
(2022-05-22) = * Fully tested with Contact Form 7 version 5.5.6.1
Download this release
Release Info
Developer | Jules Colle |
Plugin | Conditional Fields for Contact Form 7 |
Version | 2.1.5 |
Comparing to | |
See all releases |
Code changes from version 2.1.4 to 2.1.5
- admin-style.scss +0 -4
- contact-form-7-conditional-fields.php +1 -1
- init.php +2 -2
- readme.txt +4 -1
admin-style.scss
CHANGED
@@ -313,8 +313,4 @@
|
|
313 |
box-shadow: 0 1px 1px rgba(0,0,0,.04);
|
314 |
margin: 5px 0 2px;
|
315 |
padding: 1px 12px;
|
316 |
-
}
|
317 |
-
|
318 |
-
.wpcf7cf-switch-to-txt-link {
|
319 |
-
|
320 |
}
|
313 |
box-shadow: 0 1px 1px rgba(0,0,0,.04);
|
314 |
margin: 5px 0 2px;
|
315 |
padding: 1px 12px;
|
|
|
|
|
|
|
|
|
316 |
}
|
contact-form-7-conditional-fields.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://bdwm.be/
|
5 |
* Description: Adds support for conditional fields to Contact Form 7. This plugin depends on Contact Form 7.
|
6 |
* Author: Jules Colle
|
7 |
-
* Version: 2.1.
|
8 |
* Author URI: http://bdwm.be/
|
9 |
* Text Domain: cf7-conditional-fields
|
10 |
* License: GPL v2 or later
|
4 |
* Plugin URI: http://bdwm.be/
|
5 |
* Description: Adds support for conditional fields to Contact Form 7. This plugin depends on Contact Form 7.
|
6 |
* Author: Jules Colle
|
7 |
+
* Version: 2.1.5
|
8 |
* Author URI: http://bdwm.be/
|
9 |
* Text Domain: cf7-conditional-fields
|
10 |
* License: GPL v2 or later
|
init.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
if (!defined('WPCF7CF_VERSION')) define( 'WPCF7CF_VERSION', '2.1.
|
4 |
if (!defined('WPCF7CF_CF7_MIN_VERSION')) define( 'WPCF7CF_CF7_MIN_VERSION', '5.4' );
|
5 |
-
if (!defined('WPCF7CF_CF7_MAX_VERSION')) define( 'WPCF7CF_CF7_MAX_VERSION', '5.5.6' );
|
6 |
if (!defined('WPCF7CF_REQUIRED_WP_VERSION')) define( 'WPCF7CF_REQUIRED_WP_VERSION', '4.1' );
|
7 |
if (!defined('WPCF7CF_PLUGIN')) define( 'WPCF7CF_PLUGIN', __FILE__ );
|
8 |
if (!defined('WPCF7CF_PLUGIN_BASENAME')) define( 'WPCF7CF_PLUGIN_BASENAME', plugin_basename( WPCF7CF_PLUGIN ) );
|
1 |
<?php
|
2 |
|
3 |
+
if (!defined('WPCF7CF_VERSION')) define( 'WPCF7CF_VERSION', '2.1.5' );
|
4 |
if (!defined('WPCF7CF_CF7_MIN_VERSION')) define( 'WPCF7CF_CF7_MIN_VERSION', '5.4' );
|
5 |
+
if (!defined('WPCF7CF_CF7_MAX_VERSION')) define( 'WPCF7CF_CF7_MAX_VERSION', '5.5.6.1' );
|
6 |
if (!defined('WPCF7CF_REQUIRED_WP_VERSION')) define( 'WPCF7CF_REQUIRED_WP_VERSION', '4.1' );
|
7 |
if (!defined('WPCF7CF_PLUGIN')) define( 'WPCF7CF_PLUGIN', __FILE__ );
|
8 |
if (!defined('WPCF7CF_PLUGIN_BASENAME')) define( 'WPCF7CF_PLUGIN_BASENAME', plugin_basename( WPCF7CF_PLUGIN ) );
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Website: http://bdwm.be
|
|
6 |
Tags: wordpress, contact form 7, forms, conditional fields
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 6.0
|
9 |
-
Stable tag: 2.1.
|
10 |
Requires PHP: 7.0
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -123,6 +123,9 @@ Make sure to also update CF7 to the latest version! (Version 2.0 is only compati
|
|
123 |
|
124 |
== Changelog ==
|
125 |
|
|
|
|
|
|
|
126 |
= 2.1.4 (2022-05-16) =
|
127 |
* It's no longer needed to save the form before adding conditions. Available groups are updated instantaneously after adding/changing them in the form editor.
|
128 |
* Fix problems when group is named "children" [GH issue 74](https://github.com/pwkip/contact-form-7-conditional-fields/issues/74)
|
6 |
Tags: wordpress, contact form 7, forms, conditional fields
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 6.0
|
9 |
+
Stable tag: 2.1.5
|
10 |
Requires PHP: 7.0
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
123 |
|
124 |
== Changelog ==
|
125 |
|
126 |
+
= 2.1.5 (2022-05-22) =
|
127 |
+
* Fully tested with Contact Form 7 version 5.5.6.1
|
128 |
+
|
129 |
= 2.1.4 (2022-05-16) =
|
130 |
* It's no longer needed to save the form before adding conditions. Available groups are updated instantaneously after adding/changing them in the form editor.
|
131 |
* Fix problems when group is named "children" [GH issue 74](https://github.com/pwkip/contact-form-7-conditional-fields/issues/74)
|