In this article, we will consider how to solve unusual tasks when using new forms.
How to place the same form several times on the same page?
Copy the form code and place the form on any page of the site.
Can I use a CRM form and a widget with this CRM form on the same page?
Yes, you can. Copy the code for the CRM form and insert it at any place on the page.
How can I add several contact forms on one page?
Copy the form code and insert it at any place .
Can I set values in the form code for fields that are not placed on this form?
Yes, you can set values to all forms on the page or to one specific form. Remove /* and */ to include a script for a specific form, in this case with ID 792.
Place this script on the page BEFORE connecting the forms.
<script> window.addEventListener('b24:form:init', (event) => { let form = event.detail.object; /*if (form.identification.id == 792) { form.setProperty("param1", "1"); form.setProperty("city", "San Francisco"); }*/ }); </script>
How to specify field values for all widgets on the page?
Place this script on the page BEFORE connecting the widget.
<script> window.addEventListener('b24:form:init', (event) => { let form = event.detail.object; form.setValues({ "name": "Michael", "last-name": "Wilson", "email": "michael@example.com", "phone": "+11234567890" }); }); </script>