ibericode
Forum Replies Created
-
Forum: Plugins
In reply to: [MC4WP: Mailchimp User Sync] How to choose the total number for sync?Hi Loc,
Sorry but the plugin does not offer a way to limit the total numbers of users sent to MailChimp, as doing so will require a bit more knowledge about the use case.
– Which users to send to MailChimp?
– What if MailChimp list has other subscribers, coming from other sources?
– Etc.Can I ask what your use case is? It might be something we can support from within the plugin, but we’ll need a bit more info for that.
Thanks in advance!
Hi jscott87,
Sorry for the late reply, but can you please give the latest version of the plugin? We fixed a few minor bugs which should make the plugin a lot more stable when running it on large databases such as yours.
If anything, it should give us an error to work with. 🙂
Let me know please!
PS. The auto-sync process runs a maximum of 1 hour after a change is made.
Hi Patrick,
Sorry for the late reply, this one slipped through our attention. It is not possible to specify the add/overwrite behaviour per grouping / field as they work on a per-call (API call) basis.
Changing the implementation would probably fix this quite easily though. Two quick options come to mind.
1. Assume the default group when no field value is given. Then just update whenever a value IS given. You could use “list segments” (in MailChimp) for this, for example.
2. Use a filter in PHP on the
mc4wp_form_merge_varsfilter and unset the groupings data if it is at the default value.Does that help? If not, let me know please!
Forum: Plugins
In reply to: [MailChimp for WordPress - Captcha] Capcha integration failHi ProgressiveTech,
You are spot on – we just pushed out an update that fixes this issue. Sorry for the hassle!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Re Direct Not Working in Latest VersionI just tested your form and I’m being redirected to the following URL.
http://timelyness.co.uk/subscription-thank-you/%E2%80%8EIf you look closely, you’ll see a few weird characters at the end of this URL. Please check your “redirect to this url” setting for characters or whitespace at the end of the setting and then re-save your form.
That should get rid of this issue. 🙂
Hope that helps. If not, let me know!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Re Direct Not Working in Latest VersionHi Trevor,
What does your “Redirect to this URL on success” setting look like for the form you posted?
Thanks!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Change Email FieldHi there,
A lot of this depends on your theme styles but the following should get you somewhat close.
.mc4wp-form input[type="email"] { height: auto; margin: 0; padding: 8px 16px; line-height: 1.428571429; color: #555555 !important; vertical-align: middle; background: none; background-color: #ffffff; border: 1px solid #6a6a6a; border-radius: 2px; text-shadow: none; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(68, 68, 68, 0.15); }Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] webhook instruction for two way syncHi Bruno,
You can upload your image file to any image sharing site like imgurl.
As for the webhook, I’m sorry but this does not work with the MailMunch sign-in forms. You need to use the MailChimp User Sync subscribe functionality for this.
Hope that helps. If not, let me know!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Sorting into Groups won't workHi Daniel,
I just answered your email but wanted to post the solution here as well, in case someone else runs into the same thing.
The mc4wp- prefix method only works for Contact Form 7 and other HTML integrations, not for the comment form. To add MailChimp fields to your comment form, you’ll have to take the following steps.
1) Add the HTML to you comment form, which you already did so that is great. 🙂
2) Tell the plugin to send that field to MailChimp. You can use the mc4wp_merge_vars filter for this.
add_filter( 'mc4wp_merge_vars', function( $vars ) { if( isset( $_POST['GROUPINGS'] ) ) { $vars['GROUPINGS'] = $_POST['GROUPINGS']; } return $vars; });(Please use
$_POST['your-field-name']in the snippet).Hope that helps. If not, let me know!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Transition from subscribe2Hi Rick,
With MailChimp you can create so-called RSS Driven Email Campaign. This will check your site for new posts at a set interval and if there are new posts: send out a newsletter.
You can send this email campaign to your entire list of subscribers or to a specific subset.
Hope that helps. If not, let me know!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] CF7 Integration issuesHi NIkesh,
We’d love to take a closer look at this issue to help you resolve it. Could you send us an email at support[at]mc4wp.com with admin credentials so we can take a look?
Please include a link to this topic so we know the backstory. 🙂
Thanks in advance!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Newsletter errorHi MommaMarcy,
Are you getting a specific error message? Do you have a link where we can see a sign-up form in action to perform some hands-on testing?
Thanks in advance!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] WideningHi Revampcyber,
Which things did you try already?
Adding the following snippet of code to your theme its stylesheet or using a plugin like Simple Custom CSS should do the trick!
.mc4wp-form input[type="submit"] { background-color: orange; }Hi Yiggory,
Did you perhaps select 3 separate MailChimp lists to subscribe to? In that case, MailChimp will send out double opt-in confirmation emails for each of those lists, there’s really not much we can do to prevent that from happening besides disabling double opt-in (not recommended).
Let us know please!
Hey Oejabeja,
In terms of code, the actual subscribe request is pretty much decoupled form the form itself (for easier unit testings, better decoupling, law of demeter etc..). What exactly are you trying to do? Do you want to hook into a successful form submissions or do you want to hook into a successful sign-up request?
We’ll think of a way to make it possible! 🙂