Create Popup Forms in WordPress
With the release of version 2.11.0.0, you can create popup forms in ez Form Calculator. This is useful in different use cases, for example, if you don’t want to show the form directly to the users. This feature can be added to existing forms with just a few clicks.
Add Popup Forms
In order to add a popup form, follow these steps in order:
- Go to the main view of ez Form Calculator
- Open up a form
- Click on form options
- Select Layout
- Enable Open form in popup
- (optional) Enable Open popup automatically
- Click on Update options
Depending on the option Open popup automatically, the form will open up as soon as the page was loaded. You might disable this option if you want to open the form popup manually or via a button click. A button will be added automatically (you can disable this with the Show popup button option).
There are two additional ways to open the form popup:
- JavaScript code:
EZFC.popup_form_open(1); // opens form popup with ID 1
- Link:
<a href="#" onclick="javascript:EZFC.popup_form_open(1);">Open Form</a>
Popup Form Example
Loading...