Viewing 2 replies - 1 through 2 (of 2 total)
  • I have a similar question that I’m starting to look into. I have a contact form and one of the fields is a check box that says “sign me up” for eNewsletter. That’s fine and they are being added to the list … BUT there is no double opt-in set. The person signing up should get a verification email with a link to confirm, but that’s not happening … they are getting put right into the CC list and listed as Active.

    Plugin Contributor Zack Katz

    (@katzwebdesign)

    This will be fixed in the next release; the API code was using ACTION_BY_CUSTOMER instead of ACTION_BY_CONTACT.

    I added a filter gravity_forms_constant_contact_action_by that you can tap into to modify the source to be ACTION_BY_CUSTOMER if you so wish, using the following code in your theme’s functions.php file:

    add_filter('gravity_forms_constant_contact_action_by', 'return_action_by_customer');
    function return_action_by_customer() { return 'ACTION_BY_CUSTOMER'; }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Gravity Forms Constant Contact Add-on] Check box option’ is closed to new replies.