Hi,
This thread has what you’ll need: http://wordpress.org/support/topic/getresponse-support
You’ll need to read through the HTML generated by getresponse for the value needed for the hidden field.
Cheers!
Thread Starter
Matiss
(@macmtiss)
I added the link: https://app.getresponse.com/add_contact_webform.html to form action and <input type=”hidden” id=”WFItem425773″ value=”425773″> to Hidded Field. (values I took from Getresponse Form HTML) but I am getting NO WEBFORM ID. As it is going to https://app.getresponse.com/add_contact_webform.html probably the link should have some values in it or I am doing somethig else totally wrong?
Please send a link to your site.
Have you tried <input type="hidden" id="webform_id" value="425773">, going from the previous thread?
Thread Starter
Matiss
(@macmtiss)
I tried. Didn’t work.
http://www.decided2getfit.com there you can see original webform generated with getresponse which works fine.
I missed this earlier. The hidden field should use name as shown on the other thread, not id.
So:
<input type="hidden" name="webform_id" value="425773">
Additionally, the first name field name should be changed to name and the e-mail field name should be changed to email (the capitalization matters).
Cheers!
Thread Starter
Matiss
(@macmtiss)
Boom, that worked. Brilliant, thanks.