pwkip / contact-form-7-conditional-fields

Wordpress Plugin: Contact Form 7 Conditional Fields
http://bdwm.be/wpcf7cf
22 stars 18 forks source link

[response] tag doesn't work properly in multistep #127

Open pwkip opened 2 weeks ago

pwkip commented 2 weeks ago

When adding a [response] tag in multistep forms, the beheviour is buggy. Only if the response if placed before the first step, it seems to work.

For example: this form gives no response message whatsoever

[step]
  [response]
  T1: [text* t1]
  [response]
[step]
  [response]
  T2: [text* t2]
  [response]
  [submit]

https://conditional-fields-cf7.bdwm.be/form-tester/?test-form=Github+issue+127+%281%29

This one works because the [response] is outside of the steps

[response]
[step]
  T1: [text* t1]
[step]
  T2: [text* t2]
  [submit]

https://conditional-fields-cf7.bdwm.be/form-tester/?test-form=Github+issue+127+%282%29