appscreo / easy-social-share-buttons3

The #1 WordPress social media plugin Easy Social Share Buttons https://socialsharingplugin.com
1 stars 0 forks source link

Ability to pass random custom fields to Mailchimp subscribe form. Fields are registered with filter call (example in the content here). #319

Closed appscreo closed 2 years ago

appscreo commented 2 years ago
add_filter('essb_custom_subscribe_form_fields', function() {
   $r = array(
       'fname' => array('display' => 'First Name', 'type' => 'input', 'map' => 'FNAME', 'required' => true),
       'lname' => array('display' => 'Last Name', 'type' => 'input', 'map' => 'LNAME', 'required' => true),           
       'phone' => array('display' => 'Phone', 'type' => 'input', 'map' => 'PHONE', 'required' => true),
       'address' => array('display' => 'Address', 'type' => 'input', 'map' => 'ADDRESS', 'required' => true)
   ); 

   return $r;
});