* eFlyerMaker Forms Builder plugin for Wordpress
Setup a signup form
Setup a signup form
Contents
Display the form in a WordPress page
From your WordPress' Dashboard, go into your page's list and select the page where you want to display your form. You can create a new page if needed.
- Click on the eflyermaker icon located at the right of the toolbar.
- A modal window should appear containing the list of your saved forms.
- Select the Form you want, then save your page.
- The form should now appear in the page.
Display the form in the SideBar
From your WordPress' Dashboard, go in Appearance then select Widgets
- In the "Available Widgets" list, you should see "eFlyerMaker Form".
- Drag the "eFlyerMaker Form" widget into the Sidebar.
- Choose a Title
- Select the form you want to display
- Save and go on your site and see the changes.
Display the form as a Popup
From your WordPress' Dashboard, go into your page's list and select the page where you want to display your form. You can create a new page if needed.
- Click on the eflyermaker icon located at the left of the toolbar.
- A modal window should appear containing the list of your saved forms.
- Select the Form you want
- Make sure to check the checkbox "Set as popup"
- Leave the "Popup trigger(s):" field empty than save your page.
- The form should now appear in the page.
Trigger Popup Form from Button (case A)
Not only can you set your sign-up form as a pop up, you can also set it as a pop up with a trigger. For example: If someone clicks on a "Subscribe" button on your website, the pop up form appears.
From your WordPress' Dashboard, go into your page's list and select the page where you want to display your form. You can create a new page if needed.
- Click on the eflyermaker icon located at the left of the toolbar.
- A modal window should appear containing the list of your saved forms.
- Select the Form you want
Make sure to Check the checkbox "Set as popup"
- In the "Popup trigger(s):" field, type in the Class or Id of your trigger.
# refers to an Id
. refers to a Class.
- Click "Ok"
- Switch the view from Visual to Text(HTML)
- Make sure the Id and Class identified as triggers are the same as the actual Id and Class in your HTML.
- Save the page
- Use the preview to test your triggers.
Trigger Popup form from Button (case B)
In case you'd want a smaller form on the page with just the email field and the button. Once the visitor clicks on the confirm button, the popup is triggered and the full form appears with the email field already filled.
To do so:
- Follow same instructions of Case A
In the source code of the button, add this attribute : efmfb-email
- This value is the Id of the referring Field. Code Sample :
[eFlyerMaker-form form_id="1" is_popup="true" popup_onclick="#TriggerID"] <strong>Please subscribe to our newsletter :</strong> <input name="email" size="45" type="text" id="emailinput"/> <button id="TriggerID" efmfb-email="emailinput">Confirm</button>
Trigger ID is TriggerID which is the button
Referring input field ID is emailinput, which is the email address to display in the popup triggered by the button.