Contact Form 7 Multi-Step Forms - Version 2.0.5

Version Description

added form id to wh_hide_cf7_step_message filter.

Download this release

Release Info

Developer webheadllc
Plugin Icon 128x128 Contact Form 7 Multi-Step Forms
Version 2.0.5
Comparing to
See all releases

Code changes from version 2.0.4 to 2.0.5

contact-form-7-multi-step-module.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.mymonkeydo.com/contact-form-7-multi-step-module/
5
  Description: Enables the Contact Form 7 plugin to create multi-page, multi-step forms.
6
  Author: Webhead LLC.
7
  Author URI: http://webheadcoder.com
8
- Version: 2.0.4
9
  */
10
  /* Copyright 2012 Webhead LLC (email: info at webheadcoder.com)
11
 
@@ -24,7 +24,7 @@ Version: 2.0.4
24
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25
  */
26
 
27
- define( 'CF7MSM_VERSION', '2.0.4' );
28
  define( 'CF7MSM_PLUGIN', __FILE__ );
29
  define( 'CF7MSM_FREE_TEXT_PREFIX_RADIO', '_wpcf7_radio_free_text_' );
30
  define( 'CF7MSM_FREE_TEXT_PREFIX_CHECKBOX', '_wpcf7_checkbox_free_text_' );
@@ -215,11 +215,11 @@ function cf7msm_step_2($cf7) {
215
  || ($matches[1] != 1 && ((int) $step) + 1 < $matches[1]) ) {
216
  if ( $has_wpcf7_class ) {
217
  $cf7->set_properties( array(
218
- 'form' => apply_filters('wh_hide_cf7_step_message', __( 'Please fill out the form on the previous page', 'cf7msm' ) )
219
  ) );
220
  }
221
  else {
222
- $cf7->form = apply_filters('wh_hide_cf7_step_message', __( 'Please fill out the form on the previous page', 'cf7msm' ) );
223
  }
224
  }
225
  if (count($matches) >= 3 && $matches[1] != $matches[2]) {
5
  Description: Enables the Contact Form 7 plugin to create multi-page, multi-step forms.
6
  Author: Webhead LLC.
7
  Author URI: http://webheadcoder.com
8
+ Version: 2.0.5
9
  */
10
  /* Copyright 2012 Webhead LLC (email: info at webheadcoder.com)
11
 
24
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25
  */
26
 
27
+ define( 'CF7MSM_VERSION', '2.0.5' );
28
  define( 'CF7MSM_PLUGIN', __FILE__ );
29
  define( 'CF7MSM_FREE_TEXT_PREFIX_RADIO', '_wpcf7_radio_free_text_' );
30
  define( 'CF7MSM_FREE_TEXT_PREFIX_CHECKBOX', '_wpcf7_checkbox_free_text_' );
215
  || ($matches[1] != 1 && ((int) $step) + 1 < $matches[1]) ) {
216
  if ( $has_wpcf7_class ) {
217
  $cf7->set_properties( array(
218
+ 'form' => apply_filters('wh_hide_cf7_step_message', __( 'Please fill out the form on the previous page', 'cf7msm' ), $form_id )
219
  ) );
220
  }
221
  else {
222
+ $cf7->form = apply_filters('wh_hide_cf7_step_message', __( 'Please fill out the form on the previous page', 'cf7msm' ), $form_id );
223
  }
224
  }
225
  if (count($matches) >= 3 && $matches[1] != $matches[2]) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate Link: http://webheadcoder.com/donate-cf7-multi-step-forms
4
  Tags: contact form 7, multistep form, form, multiple pages, store form, contact, multi, step
5
  Requires at least: 3.4.1
6
  Tested up to: 4.6
7
- Stable tag: 2.0.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -98,6 +98,10 @@ The `multistep` form tag is a hidden field and tries not to add any spacing to y
98
 
99
  == Changelog ==
100
 
 
 
 
 
101
  = 2.0.4 =
102
  fixed plugin conflict.
103
 
4
  Tags: contact form 7, multistep form, form, multiple pages, store form, contact, multi, step
5
  Requires at least: 3.4.1
6
  Tested up to: 4.6
7
+ Stable tag: 2.0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
98
 
99
  == Changelog ==
100
 
101
+ = 2.0.5 =
102
+ added form id to wh_hide_cf7_step_message filter.
103
+
104
+
105
  = 2.0.4 =
106
  fixed plugin conflict.
107