How can I add a custom field to the subscription form? To add a custom field to the subscription form, you can follow these steps:
- Go to the panel “Subscription/Custom Fields” and configure a custom field giving it a name and a type (text, list, …)
- Configure the custom field to be public (private custom fields are for internal use and cannot be changed by subscribers)
- Go to the panel “Subscription/Form” and mark the custom field to be shown on the form
- End
How can I add a custom field to the profile editing form? To add a custom field to the profile editing so the subscriber can change it, follow these steps:
- Go to the panel “Subscription/Custom Fields” and check if the custom field you want to add is configured and set as public: only public custom fields can be managed by the subscriber
- Go to the panel “Subscribers/Profile Page” and mark the custom field to be shown on the form
- End
How can I create a custom subscription form? To create a custom subscription form you can use, for example, the form and field shortcodes fully described in the documentation. Here is an example step-by-step:
- Create a new page or edit an existing page or post where you want to add the custom subscription form
- Where you want to form appear add the shortcode
[newsletter_form]
: this starts the subscription form - Add one or more form fields using the shortcode
[newsletter_field name="xxx"]
where the name attribute specifies the type of field (email, first name, last name, list, custom fields, privacy checkbox, and so on) - Important: close the form using the shortcode
[/newsletter_form]
(note the starting slash) - End