How to name a embed form field?

Hello!

I created a form with a hidden embed to capture the CMS page name, following a tip from the community.

It worked just fine, but when i recieve the information, the embed field is named “Field 3”, “Field 4”, etc…
As I want to integrate the form with MailChimp, I need the field name to match between MailChimp and Webflow, and I want to give it another name (like “page name”, or something like that), but there is no option in the Element Settings (and I don`t really understand much of code :confused: ).

Is that possible?

*Sorry for any grammar mistake, not used to write in english. :slight_smile:

You’ll need to add the name into your custom HTML input field.

<input type=“hidden” name=“page-name” value=“{{Name}}”>

1 Like

It worked!
Thank you!!! :smiley: