Programmatically added merge_vars not being sent to Mailchimp
-
This is the website I’m working on: https://www.lasnaranjasonline.com/
I’m trying to generate a Woocommerce Coupon Code for each person who subscribes to my website’s newsletter. For that, I created in my mailchimp list a hidden field called COUPON.
When a user subscribes whether using the MC4WP form or its WooCommerce or Contact Form 7 integrations, I want the coupon code to be dinamically generated and sent to Mailchimp so I added this function to my theme’s function.php.
add_filter('mc4wp_merge_vars', 'myprefix_add_custom_merge_vars'); function myprefix_add_custom_merge_vars( $merge_vars ) { $coupon_code = generateCouponCode(); $merge_vars['COUPON'] = $coupon_code; return $merge_vars; }
$merge_vars prints:
Array ( [EMAIL] => [email protected] [LANG] => es [OPTIN_IP] => xx.xx.xx.xx [COUPON] => NWLTR_565EC304B4B2C )
But class-api.php subscribe() $data prints:
Array ( [id] => f8a42d36e4 [email] => Array ( [email] => [email protected] ) [merge_vars] => Array ( [EMAIL] => [email protected] [LANG] => es ) [email_type] => html [double_optin] => 1 [update_existing] => 1 [replace_interests] => 1 [send_welcome] => 0 )
So it seems that my $merge_vars[‘COUPON’] gets ignored along the way. What am I doing wrong?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Programmatically added merge_vars not being sent to Mailchimp’ is closed to new replies.