mxgolfcpu
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Why did you have to mess up the notices?I agree, how do we get the new style of notice back to get rid of the old (bland, ugly) ones.
And so… why did you give it 5 stars???
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Checkbox display options not working in 2.5.3Thanks for the reply Jordan. I did some more testing and here is what I have come up with.
I have two separate accounts that I do my Web site testing with. Both accounts are in my MailChimp audience and neither is unsubscribed. The first account I test with does not show the option to opt-in to my newsletter, probably because they are listed as Subscribed in my audience. The second account does list the option to opt-in to my newsletter. In my audience this account indicates that “This person is only eligible for transactional emails.” It doesn’t list that contact as either subscribed or unsubscribed. How are contacts getting into my audience who aren’t subscribed, or unsubscribed?
Forum: Plugins
In reply to: [Chatbot with IBM watsonx Assistant] Auto-generated service credentialsThanks, that resolved my problem.
I’m not an expert but this shouldn’t take another $99 plugin with hundreds of lines of code that needs to be updated and tested whenever there is a new release. This should be about 3 lines of code in the plugin. Here is my first pass. Can someone please confirm if I am hooking the right action and passing the right parameters.
Here is my plugin code;
function wc_subscription_cancelled_add_customer_email( $recipient, $subscription ){
return $recipient . ‘,’ . $subscription->billing_email;
}
add_filter( ‘woocommerce_subscription_status_active_to_pending-cancel’, ‘wc_subscription_cancelled_add_customer_email’, 10, 2 );