tyxla / Gravity-Forms-Multiple-Form-Instances

Allows multiple instances of the same form to be run on a single page when using AJAX.
GNU General Public License v2.0
38 stars 22 forks source link

Wrong replace for label for='choice_' #28

Open havasmtl-tdiezel opened 6 years ago

havasmtl-tdiezel commented 6 years ago

I fixed by changing the line 57:

"for='choice" . $form['id'] . "" => "for='choice_" . $randomid . '',

franco4785 commented 5 years ago

I had the same issue, but I had to tweak your code a bit As of version (2.4.9), I added this and it fixed it

"for='choice_" . $form['id'] . "" => "for='choice_" . $random_id,