Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Mail Chimp Integration questions
- This topic has 15 replies, 3 voices, and was last updated 14 years, 3 months ago by JonathanFokker.
-
AuthorPosts
-
June 8, 2010 at 1:38 pm #1334JonathanFokkerMember
Hello,
I do have a few questions:
1) I tried to integrate Mail Chimp with WP eStore. I checked all the right Settings in WP eStore Settings – Autoresponder Settings. Checked both boxes, gave in the name of the list and my account information.
Any clue what I did wrong?
2) I want to add customers to specific lists with specific products. Under the Autoresponder section with the specific product I have to add the name of the list. It says this: The name of the list where the customers of this product will be signed up (e.g. listname@aweber.com, customers). Use this if you want the customer of this product to be signed up to a specific list.
What do I type? E.g. if the name of my list is Acts2day, do I type Acts2day@mailchimp.com?
Looking forward to your reply!
Shalom,
Jonathan
June 9, 2010 at 3:55 am #21514amin007ParticipantYou just enter the name of the list as it appears on your Mailchimp account dashboard under the “Lists” menu.
So if your list name is “Acts2day” then simply use that (no need to add anything extra to the list name for mailchimp)
July 20, 2010 at 10:20 am #21515JonathanFokkerMemberHe Amin,
Thanks for the reply, but do still have some problems.
The situation: I have subscribe button for an e-zine on my website. People pay through Paypal and are automaticly added to Mail Chimp.
I enabled MailChimp in Autoresponder settings. I didn’t want to have global integration, so I specified the specific lists people will be subscribed on in my products.
I enabled Post Payment Processing Settings: Use Automatic Post Payment Processing I checked and Use Strict PayPal Email Address Checking I checked. I don’t want people to receive an email of purchase info, because we handle that through MailChimp.
When testing, nothing happened. No adding to MailChimp (or emails from MailChimp for doing so), no adding of sale in WPeStore, nothing.
I tried to debug. See here the info of the file:
[07/20/2010 9:57 AM] – SUCCESS :Connection to http://www.paypal.com successfuly completed.
[07/20/2010 9:57 AM] – SUCCESS :IPN successfully verified.
[07/20/2010 9:57 AM] – SUCCESS :Creating product Information to send.
[07/20/2010 9:57 AM] – SUCCESS :Seller Paypal Email Address is Valid: info@joelministries.org
[07/20/2010 9:57 AM] – SUCCESS :Transaction Type: Buy Now/Subscribe
[07/20/2010 9:57 AM] – SUCCESS :Item Number: 1
[07/20/2010 9:57 AM] – SUCCESS :Item Name: Subscription Acts2day (one year) EUR
[07/20/2010 9:57 AM] – SUCCESS :Item Quantity: 1
[07/20/2010 9:57 AM] – SUCCESS :Item Total: 0.01
[07/20/2010 9:57 AM] – SUCCESS :Item Currency: EUR
[07/20/2010 9:57 AM] – SUCCESS :Download Link : Subscription Acts2day (one year) EUR – This product does not have any downloadable content
[07/20/2010 9:57 AM] – SUCCESS :Updating Affiliate Database Table with Sales Data if Using the WP Affiliate Platform Plugin.
[07/20/2010 9:57 AM] – SUCCESS :WP Affiliate Platform is installed, registering sale…
[07/20/2010 9:57 AM] – SUCCESS :No Referrer Found. This is not an affiliate sale
[07/20/2010 9:57 AM] – SUCCESS :Paypal class finished.
I couldn’t find the problem. Can you please help? I can provide you temporary inlog for the website.
Thanks!
Shalom,
Jonathan
July 20, 2010 at 12:36 pm #21516amin007ParticipantLooks like this a recurring payment for a subscription… for recurring payment you don’t want to subscribe the user again to your autoresponder as this person is already subscribed.
Now, the issue here is that you are testing as the same buyer so the plugin is thinking it’s a recurring payment as this subscription information is already in the database Remember, in the real world you will never have a customer with two active subscription for the same product at the same time. So, basically when you are testing it out please recreate a real world scenario (use a different buyer’s paypal account or delete the info from the manage customers menu) and it will go through the autoresponder signup and sending of email to the buyer.
Let me know if it makes sense.
July 26, 2010 at 9:38 am #21517JonathanFokkerMemberHe Amin,
Thanks for the reply! It works!
Great!
One more question: can I disable the notifications to the seller when there is a new purchase, I don’t want to receive these notifications.
Shalom,
Jonathan
July 27, 2010 at 1:44 am #21518amin007ParticipanteStore has one option that disables the email notifications but that will disable notification for buyers too.
If you just want to turn of notification for the seller then you will need to modify a bit of code (this will be an easy modification). Couldn’t you just create an email filter and filter all the notification out so it doesn’t go to your inbox?
This post might be of some with setting up email filters if you are not familiar with it:
http://www.tipsandtricks-hq.com/email-management-tips-how-to-setup-email-filters-293
August 2, 2010 at 7:50 am #21519JonathanFokkerMemberHe Amin,
I prefer to modify the code a bit. Can you help me with that?
I don’t want the buyers to receive an email of notification, because we are handling this through Mail Chimp. And I as a seller don’t want to receive notifications of a new purchase.
Right now I have the option of email notifications to the buyer is already disabled, but as a seller I still receive emails.
Thanks for your help!
Greetings,
Jonathan
August 3, 2010 at 1:03 am #21520amin007ParticipantOpen the “paypal.php” file and find the following bit of code:
if (get_option('eStore_use_wp_mail'))
{
wp_mail($notify_email, $n_subject, $n_body);
$this->debug_log('Notify Email successfully sent to '.$notify_email.'.',true);
}
else
{
if(@eStore_send_mail($notify_email,$n_body,$n_subject,$download_email))
{
$this->debug_log('Notify Email successfully sent to '.$notify_email.'.',true);
}
else
{
$this->debug_log('Error sending notify Email to '.$notify_email.'.',false);
}
}Once you find it just delete this code and it will stop sending sales notification emails to the admin.
August 3, 2010 at 9:03 am #21521JonathanFokkerMemberThanks Amin.
I tried to delete the code, but when I do this the autoresponder is not working (so no emails from Mail Chimp) and no customer is added. Any help on this?
Greetings,
Jonathan
August 3, 2010 at 9:18 am #21522JonathanFokkerMemberSorry Amin. It does work. I did something wrong.
Thank you soo much for your great support!
Shalom,
Jonathan
August 3, 2010 at 9:21 am #21523JonathanFokkerMemberSorry. Again another question.
I see that MailChimp is doing fine, but I don’t see a new customer in my WordPress backend.
Any help on this?
Shalom,
Jonathan
August 3, 2010 at 11:27 am #21524IvyMemberHi, Can you please do a test transaction with the debug turned on. You can read more about this here:
If you need help reading the debug log please post it for us and we will take a look at it.
August 3, 2010 at 1:18 pm #21525JonathanFokkerMemberHe Ivy,
Here is the debug log file. I deleted all customers in the admin page and made a new transaction. But not added to the database in the backend of WordPress.
[admin deleted debug info]
Looks like things are OK. But please help.
Shalom,
Jonathan
August 3, 2010 at 1:39 pm #21526IvyMemberDid you do an update recently and deactivate and reactive the plugin after the update? If not try deactivating the plugin and reactivating it?
Can you add a customer manually?
August 3, 2010 at 1:46 pm #21527amin007ParticipantI beleive you are trying to test a subscription payment but there is a small flaw in the testing. This link should explain more:
https://support.tipsandtricks-hq.com/forums/topic/testing-a-subscription-payment-in-estore
-
AuthorPosts
- You must be logged in to reply to this topic.