diff --git a/webform_mailchimp.inc b/webform_mailchimp.inc
index 85dda61..b2b6371 100644
--- a/webform_mailchimp.inc
+++ b/webform_mailchimp.inc
@@ -190,7 +190,6 @@ function _webform_render_mailchimp($component, $value = NULL, $filter = TRUE) {
       '#required'          => $component['mandatory'],
       '#description'       => $filter ? _webform_filter_descriptions($component['extra']['description']) : $component['extra']['description'],
       '#default_value'     => _webform_filter_values($component['value']),
-      '#theme_wrappers'    => array('webform_element'),
       '#webform_component' => $component,
       '#weight'            => $component['weight'],
     );
@@ -209,7 +208,6 @@ function _webform_render_mailchimp($component, $value = NULL, $filter = TRUE) {
         '#title'             => !empty($component['extra']['checkbox_label']) ? _webform_filter_xss($component['extra']['checkbox_label']) : t('Subscribe to newsletter'),
         '#default_value'     => !empty($component['extra']['checkbox_checked_by_default']) ? $component['extra']['checkbox_checked_by_default'] : 0,
         '#description'       => $filter ? _webform_filter_descriptions($component['extra']['description']) : $component['extra']['description'],
-        '#theme_wrappers'    => array('webform_element'),
         '#webform_component' => $component,
         '#weight'            => $component['weight'],
       );
