Title: Multiple forms
Last modified: August 21, 2016

---

# Multiple forms

 *  Resolved [s976](https://wordpress.org/support/users/s976/)
 * (@s976)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/multiple-forms-4/)
 * Hi, it’s a great plugin!
    The problem is that I have two different newsletters,
   and I want to make two forms for subscribing… Is it possible? (I can not find
   how to figure it out) Also it can be good if a plugin was have a feature to display
   a few check boxes, so that the visitors could choose witch newsletter they will
   be subscribed…
 * [http://wordpress.org/plugins/mailchimp-for-wp/](http://wordpress.org/plugins/mailchimp-for-wp/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Danny van Kooten](https://wordpress.org/support/users/dvankooten/)
 * (@dvankooten)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/multiple-forms-4/#post-4429475)
 * Hi there,
 * Sorry, in the lite version you can only create one form. In [the premium version of the plugin](http://dannyvankooten.com/mailchimp-for-wordpress/)
   you can easily create as many forms as you like, each form subscribing to one
   or multiple of your MailChimp lists.
 * The checkboxes is something that you can add by adding a few lines of code to
   your theme its `functions.php` file. It is not included in the plugin because
   MailChimp uses interest groupings to segment a list.
 * I’m not sure how comfortable you are adding code to your `functions.php` file
   but if you want to have the user choose which list to subscribe to, you can do
   that as follows.
 * 1. Add the following HTML to your form mark-up, in the form settings of the plugin.
 *     ```
       <p>
         Lists:
   
         <input type="checkbox" name="lists[]" value="f123456" /> List 1
         <input type="checkbox" name="lists[]" value="f123456" /> List 2
       </p>
       ```
   
 * 2. Add the following PHP to your theme its `functions.php` file.
 *     ```
       function my_mc4wp_lists($lists) {
   
         if(isset($_POST['lists'])) {
           $lists = $_POST['lists'];
         }
   
         return $lists;
       }
   
       add_filter('mc4wp_lists', 'my_mc4wp_lists');
       ```
   
 * I’ve simplified the HTML a little, the important part is the `value` attribute
   which should match the ID of your MailChimp list(s).
 * The complete code can be found [here](https://gist.github.com/dannyvankooten/7595643).
 * Hope that helps!
 *  Thread Starter [s976](https://wordpress.org/support/users/s976/)
 * (@s976)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/multiple-forms-4/#post-4429478)
 * Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Multiple forms’ is closed to new replies.

 * ![](https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577)
 * [MC4WP: Mailchimp for WordPress](https://wordpress.org/plugins/mailchimp-for-wp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mailchimp-for-wp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mailchimp-for-wp/)
 * [Active Topics](https://wordpress.org/support/plugin/mailchimp-for-wp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mailchimp-for-wp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mailchimp-for-wp/reviews/)

## Tags

 * [form](https://wordpress.org/support/topic-tag/form/)
 * [multiple](https://wordpress.org/support/topic-tag/multiple/)

 * 2 replies
 * 2 participants
 * Last reply from: [s976](https://wordpress.org/support/users/s976/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/multiple-forms-4/#post-4429478)
 * Status: resolved