Make sure the embed you’ve created is actually inside of your form.
Also, if you’re using a Logic bound form, this will not work. Logic needs actual elements in the form to know what to pass to the automation.
Oops, I had been testing around and had deleted the html embed when you were reviewing. If you could take another look, I added the html and deleted the text field you were referring to, and it’s still not passing through.
It looks setup right, and you’re using Webflow’s default form handler, you shouldn’t have any issues there.
However you have a recaptcha element, and it’s not configured for your staging webflow.io site, so you would not be able to test from there, the submission would be blocked entirely.
You’ll need to test it on your production site, or update your recaptcha config to include your fringe-dev.webflow.io hostname.
Have you checked the form submission code to ensure it correctly handles hidden fields? Sometimes there might be a typo or an oversight in how the form data is processed on the backend. Also, make sure your form’s method is set to POST and not GET if you’re using hidden fields for sensitive data. GET requests can sometimes mishandle hidden fields or expose them unintentionally in URLs. If everything looks good on the form’s HTML side, maybe it’s worth testing with a simpler value like a number or a different string to see if that passes through correctly. Sometimes it’s the little things that trip us up!