squeaky
Forum Replies Created
-
Any solution to this? I am experiencing the same problem on a windows server. IUSR has full access to the captcha directory.
I was able to figure out what I needed – here is how I did it.
Takayuki Miyoshi – thank you for a great plugin, and explaining about the form being reset. It solved a mystery for me.Forum: Plugins
In reply to: [CONTACT FORM 7]: How to pass data to one CF7 field to another CF7 fieldHi Jasi-au,
Thanks for the reply and info.
My situation was a bit different, but similar. I used the same plugins.I have 2 forms, the first form is a subset of the 2nd form.
My user submits form 1(name,email,phone) and is redirected to form 2 with many more questions and the same fields from form 1. Form 2 is now populated with the fields name,email,phone from form 1.
Here is what I did, perhaps this will help someone else.
-
I read a forum post by the developer that mentioned how the form is reset before redirecting. He posted code to change that.
I updated the script.js file to alter the reset.see this posting: http://wordpress.org/support/topic/plugin-contact-form-7-conditional-redirect?replies=15 - I added my redirect into additional settings on form #1
on_sent_ok: "location = '/my-second-form?phone='+jQuery('#phone').val()+'&first-name='+jQuery('#fname').val()+'&last-name='+jQuery('#lname').val()+'&email='+jQuery('#email').val();" - On form2 used dynamic text extension for the fields I needed to populate.
[dynamictext* first-name id:first-name "CF7_GET key='first-name'"]
http://wordpress.org/extend/plugins/contact-form-7-dynamic-text-extension/
I am very new to working with WP, so it took me a while to figure it out. I hope my posting helps another – thanks again.
Forum: Plugins
In reply to: [CONTACT FORM 7]: How to pass data to one CF7 field to another CF7 fieldHi folks, did any find a solution for this need? I need the same setup. Thanks
I am in need of doing a similar tasks. I need a 2 part form, user submits part one of the form, and that data is then carried to the 2nd form and populates the same form fields.
Can I do this?
-
I read a forum post by the developer that mentioned how the form is reset before redirecting. He posted code to change that.