Adam Anderly
Forum Replies Created
-
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Error message and can't get listsThis indicates the API key might not be correct. Have you saved the API key and refreshed the screen?
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Checkbox after general conditionsAre next version (2.0) will allow for better checkbox placement options.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Woocommerce Mailchimp does not record phone numberSee this post for an example of adding a field: https://wordpress.org/support/topic/add-another-field?replies=9#post-6560225
This does not send historical customer data. We are planning on that for the pro/paid version of the plugin.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] New customer details not being added to mailchimpThis indicates that you have a merge field setup called ADDRESS and have marked it as required. This plugin does not natively send ADDRESS so you should either mark the field as not required or check the following thread on how to add the additional fields: https://wordpress.org/support/topic/add-another-field?replies=9#post-6560225
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] WooCommerce MailChimp subscription failedI haven’t seen this error before. What version of WordPress and WooCommerce are you using and what version of the plugin?
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] still being supported?Hello. This is a free plugin and support is offered as we can get to it. The plugin is still supported and will be updated in the near future with some additional features and to work with the latest version of the MailChimp API.
Forum: Reviews
In reply to: [WP WooCommerce Mailchimp] Cannot make it subscribe to any listThanks so much for the follow-up, David. Glad it’s working for you!
All, I just tested the current plugin version (1.3.6) on a fresh install of WordPress 4.4 with the latest version of WooCommerce (2.4.12) and it appears to be working fine. If you can, please send me your install details here: http://anderly.com/contact
Please include WordPress version, WooCommerce Version, Plugin Version, PHP Version and the WebHost you’re on.
I’d love to help you all get it working if we can.
Cheers,
Adam
Forum: Reviews
In reply to: [WP WooCommerce Mailchimp] Cannot make it subscribe to any listDavid,
I’m sorry you had trouble with the plugin. I just tested the current plugin (version 1.3.6) on a fresh instance of WP 4.4 and the latest version of WooCommerce (2.4.12) and it worked successfully. I’d love to help you get it working. Shoot me an email here: http://anderly.com/contact and I’d love to troubleshoot what might be causing the issue.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] customisationShooting for January.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] customisationThis will be easier in the next version (2.0).
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Add to more than one group typeThe grouping name should go in the first box and the different groupings should be comma-separated in the second box.
Would you both mind contacting me via my blog at http://anderly.com/contact and sending me a new test API key for your MailChimp accounts and I can test connecting locally on my machine? Please send me a test API key (not your current API key) – that way you can delete it after I’m done testing.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] State Field (Select)This should do the trick:
// 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' ); // Retrieve the WooCommerce order $order = new WC_Order( $order_id ); // Get the order billing address $billing_address = $order->get_address( 'billing' ); // Get the billing address state $state = $billing_address[ 'state' ]; // let's add a new 'STATE' merge field - NOTE: You'll need to change this to the actual name // of your merge field in MailChimp $merge_vars[ 'STATE' ] = $state; return $merge_vars; } add_filter( 'ss_wc_mailchimp_subscribe_merge_vars' , 'ss_wc_modify_mailchimp_merge_fields', 10 , 2 );