cboom
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay buttonHonestly, I have no idea. I was just turning on and off test mode and whatever settings I could find and at some point it worked ?? I haven’t touched it since so it wouldn’t disappear again. I was just hoping someone would fix it eventually ??
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay buttonHi,
I have exactly the same problem on this website: https://beeroots.co.uk/
Thought I was crazy until I understood the reason. Seems like a problem with the plugin.
PS: installed WooCommerce + Stripe on a new domain and installed everything from scratch (with SSL) and have same problem again: Apple/Google Pay buttons show only in testing mode.
- This reply was modified 4 years, 11 months ago by cboom.
I am following up on this, as I still couldn’t make it work ??
Lap, could you please have a look at my last comment ?
To reiterate, I want on first sync the plugin to change the Subscribed/Unsubscribed field in MailChimp depending on whether a specific WP user meta is true or false.
Would that be possible to achieve it ?
Many thanks,
Hi Lap,
Thank you for the quick response!
I tried this thing and it works, but unfortunately it’s not the functionality I want.
The above code will add to MailChimp only the users that have a specific meta_value, however I want to sync all users into MailChimp, but change their status to UNSUBSCRIBED if the specific meta_value is present.
Any idea on how to do that ?
I’ve tried the following code, but it doesn’t work ??
add_filter( 'mailchimp_sync_user_data', function( $data, $user ) { $data['STATUS'] = $user->receiveInformation; // receiveInformation has Subscribed/Unsubscribed values return $data; }, 10, 2 );