How To

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:

  1. Go to the panel “Subscription/Custom Fields” and configure a custom field giving it a name and a type (text, list, …)
  2. Configure the custom field to be public (private custom fields are for internal use and cannot be changed by subscribers)
  3. Go to the panel “Subscription/Form” and mark the custom field to be shown on the form
  4. 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:

  1. 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
  2. Go to the panel “Subscribers/Profile Page” and mark the custom field to be shown on the form
  3. 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:

  1. Create a new page or edit an existing page or post where you want to add the custom subscription form
  2. Where you want to form appear add the shortcode [newsletter_form]: this starts the subscription form
  3. 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)
  4. Important: close the form using the shortcode [/newsletter_form] (note the starting slash)
  5. End