Adam Anderly
Forum Replies Created
-
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] WooCommerce MailChimp subscription failed: MMERGE3You can hook into the
ss_wc_mailchimp_subscribe_merge_varsaction filter to override the merge fields sent to MailChimp. See below.// tie into the WooCommerce MailChimp 'ss_wc_mailchimp_subscribe_merge_vars' action filter to modify the MailChimp merge vars function ss_wc_modify_mailchimp_merge_fields( $merge_vars, $order_id ) { // By default $merge_vars will look like array( 'FNAME' => 'Joe', 'LNAME' => 'Smith', 'EMAIL' => 'joe.smith@example.com' ); // let's add a new 'MMERGE3' merge field for 'NAME' $merge_vars['MMERGE3'] = $merge_vars['FNAME'] . ' ' . $merge_vars['LNAME']; // Now let's remove the 'FNAME' and 'LNAME' merge fields unset($merge_vars['FNAME']); unset($merge_vars['LNAME']); return $merge_vars; } add_filter( 'ss_wc_mailchimp_subscribe_merge_vars' , 'ss_wc_modify_mailchimp_merge_fields', 10 , 2 );Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Working with 4.3?I have tested with WordPress 4.3.x and the plugin should work fine. I will update the plugin to reflect that at my earliest convenience.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Warning:array_mergeThis means there was an issue retrieving your MailChimp lists. Please verify your api key and that you have lists in MailChimp. I just tested the current version (1.3.6) with WordPress 4.3.1 and it is working.
Please let me know if you still have any issues.
Adam
This means there was an issue retrieving your MailChimp lists. Please verify your api key and that you have lists in MailChimp. I just tested the current version (1.3.6) with WordPress 4.3.1 and it is working.
Please let me know if you still have any issues.
Adam
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Mail list for separate productsThis is not a feature of the free version of the plugin but is a feature of our upcoming pro version: http://www.saintsystems.com/products/woocommerce-mailchimp-pro/
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Confirming whether it's working?If you enable WP_DEBUG in your wp-config.php file, then the plugin will log debug output to your debug.log file in your wp-content folder.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Order freezing on checkoutGlad to hear it!
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] MailChimp for Woocommerce and Sub-domainsMarking as resolved.
Forum: Plugins
In reply to: [Wistia Responsive] Does not work!Can you send a link to URL where it is not working and I’ll take a look?
Sorry for the delay in my reply.
This is possible by hooking into the ‘ss_wc_mailchimp_subscribe_options’ action filter where you could evaluate the product purchased and set the listid on the passed
$subscribe_optionsyou get passed in the action filter which looks like this:$subscribe_options = array(
‘listid’ => $listid,
’email’ => $email,
‘vars’ => $vars,
’email_type’ => ‘html’,
‘double_optin’ => $this->double_optin == ‘no’ ? false : true,
‘update_existing’ => true,
‘replace_interests’ => false,
‘send_welcome’ => false
);Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] update errorMarking this resolved.
There is an option in the plugin settings to display a checkbox on the checkout page which lets the user decide whether they want to subscribe or not.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Add Group selection on checkout pageWhile this isn’t included in the plugin by default, it is possible to hook into the plugins action hooks and filters to provide additional merge fields (filter “ss_wc_mailchimp_subscribe_merge_vars”) and to override the default list (filter “ss_wc_mailchimp_subscribe_options”).
See this post (https://wordpress.org/support/topic/add-another-field?replies=9#post-6560225) for how to add another field on checkout that you could then use in a the “ss_wc_mailchimp_subscribe_options” action filter to override the designated MailChimp list.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] MailChimp for Woocommerce and Sub-domainsAre you running WordPress Multisite? If so, you’ll need to install/activate the plugin on each child site.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Emails not in mailchimp even after order completedCan you confirm what your merge fields are in MailChimp. The plugin expects the MailChimp defaults of EMAIL, FNAME and LNAME. That could be the issue. Can you try setting it to “order created” and see if that works?