Conditional Fields for Contact Form 7 - Version 1.3.1

Version Description

  • Fixed bug in 1.3 that broke everything
Download this release

Release Info

Developer Jules Colle
Plugin Icon 128x128 Conditional Fields for Contact Form 7
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

contact-form-7-conditional-fields.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form 7 Conditional Fields
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: 1.3
8
  Author URI: http://bdwm.be/
9
  */
10
 
@@ -24,7 +24,7 @@ Author URI: http://bdwm.be/
24
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
 
27
- if (!defined('WPCF7CF_VERSION')) define( 'WPCF7CF_VERSION', '1.3' );
28
  if (!defined('WPCF7CF_REQUIRED_WP_VERSION')) define( 'WPCF7CF_REQUIRED_WP_VERSION', '4.1' );
29
  if (!defined('WPCF7CF_PLUGIN')) define( 'WPCF7CF_PLUGIN', __FILE__ );
30
  if (!defined('WPCF7CF_PLUGIN_BASENAME')) define( 'WPCF7CF_PLUGIN_BASENAME', plugin_basename( WPCF7CF_PLUGIN ) );
@@ -51,5 +51,5 @@ if(file_exists(WPCF7CF_PLUGIN_DIR.'/pro-functions.php')) {
51
  }
52
 
53
  require_once 'cf7cf.php';
54
- require_once 'options.php';
55
 
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: 1.3.1
8
  Author URI: http://bdwm.be/
9
  */
10
 
24
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
 
27
+ if (!defined('WPCF7CF_VERSION')) define( 'WPCF7CF_VERSION', '1.3.1' );
28
  if (!defined('WPCF7CF_REQUIRED_WP_VERSION')) define( 'WPCF7CF_REQUIRED_WP_VERSION', '4.1' );
29
  if (!defined('WPCF7CF_PLUGIN')) define( 'WPCF7CF_PLUGIN', __FILE__ );
30
  if (!defined('WPCF7CF_PLUGIN_BASENAME')) define( 'WPCF7CF_PLUGIN_BASENAME', plugin_basename( WPCF7CF_PLUGIN ) );
51
  }
52
 
53
  require_once 'cf7cf.php';
54
+ require_once 'wpcf7cf-options.php';
55
 
readme.txt CHANGED
@@ -5,8 +5,8 @@ Author: Jules Colle
5
  Website: http://bdwm.be
6
  Tags: wordpress, contact form 7, forms, conditional fields
7
  Requires at least: 4.1
8
- Tested up to: 4.7.2
9
- Stable tag: 1.3
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -83,6 +83,9 @@ I will assume that you successfully installed both plugins, that you were able t
83
 
84
  == Changelog ==
85
 
 
 
 
86
  = 1.3 =
87
  * Fixed small bug with integration with Contact Form 7 Multi-Step Forms
88
  * Also trigger hiding/showing of groups while typing or pasting text in input fields
5
  Website: http://bdwm.be
6
  Tags: wordpress, contact form 7, forms, conditional fields
7
  Requires at least: 4.1
8
+ Tested up to: 4.7.4
9
+ Stable tag: 1.3.1
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
83
 
84
  == Changelog ==
85
 
86
+ = 1.3.1 =
87
+ * Fixed bug in 1.3 that broke everything
88
+
89
  = 1.3 =
90
  * Fixed small bug with integration with Contact Form 7 Multi-Step Forms
91
  * Also trigger hiding/showing of groups while typing or pasting text in input fields
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
options.php → wpcf7cf-options.php RENAMED
@@ -79,7 +79,7 @@ function wpcf7cf_options_page() {
79
  <li>Save the Contact Form</li>
80
  <li>go to the <strong><em>Conditional Fields</em></strong> Tab</li>
81
  </ol>
82
- <a href="#">Show me an example</a> | <a class="notice-dismiss-2" href="#">Dismiss notice</a>
83
  </div></div>
84
  <?php } ?>
85
  <form action="options.php" method="post">
79
  <li>Save the Contact Form</li>
80
  <li>go to the <strong><em>Conditional Fields</em></strong> Tab</li>
81
  </ol>
82
+ <a href="http://bdwm.be/wpcf7cf/how-to-set-up-conditional-fields-for-contact-form-7/" target="_blank">Show me an example</a> | <a class="notice-dismiss-2" href="#">Dismiss notice</a>
83
  </div></div>
84
  <?php } ?>
85
  <form action="options.php" method="post">