Hello,
My customers are French and I need to translate the emails sent to them with their stamped PDF links.
I have looked in the PDF Stamper folder but there is no language folder or file.
Thanks.
Hello,
My customers are French and I need to translate the emails sent to them with their stamped PDF links.
I have looked in the PDF Stamper folder but there is no language folder or file.
Thanks.
Are you using PDF stamper with Plain PayPal or WP eStore or Clickbank?
Hello,
I am using WP Stamper stand-alone version with Plain Paypal.
Thanks.
Thank you. Please open the following file and edit the email text to your language:
wp-pdf-stamper/api/ipn_customization_config.php
Hello,
I have made the translation, making sure I respected what's required on each line, but PDF Stamper is not sending the emails any more.
Below is my code in full. I cannot see where I am making a mistake.
Thanks.
-------------------------------------------------------------------------------------------------
<?php
//The from email address that will be used to send emails to the buyer. By default it will use the paypal receiver email address.
$from_email = "";
//Email subject
$subject = "Les Services Esther - Merci Pour Votre Commande";
//The buyer email body. The first name, last name and stamped file's URL will be replaced with the text with braces {}
$buyer_email_body = "Cher(Chère) {first_name} {last_name},".
"\n\nMerci pour votre commande sur notre site web.".
"\n\nPour plus d'informations concernant la transaction financière,".
"\nveuillez vous référer au reçu envoyé par Paypal.".
"\n\nVotre Commande".
"\n-------------------".
"\nPour télécharger votre carte ou video, veuillez cliquer sur le".
"\nlien ci-dessous.".
"\nSi le lien n'est pas cliquable, copiez-le en entier et collez-le".
"\ndans votre navigateur web.".
"\n\n{product_link}".
"\n\nService Clientèle".
"\n-------------------".
"\nPour toute assistance relative à votre commande, vous pouvez nous".
"\ncontacter à partir du site, en allant sur:".
"\nhttp://servicesesther.net/contact".
"\nMerci encore et que Dieu vous bénisse!".
"\nBureau des Publications".
"\nLes Services Esther".
"\nhttp://servicesesther.net\n";
//Enable or disable debug
$debug_enabled = false;
// Debug log file name
$debug_log = "ipn_handle_debug.log";
//Sandbox mode is off
$sandbox = false;
?>
-----------------------------------------------------------------------------------------
Please change the following line:
$debug_enabled = false;
to the following:
$debug_enabled = true;
This will make it to where the plugin logs the activities in a log filed called "ipn_handle_debug.log". Share the content of that file after a transaction and it will tell us what is going on after a payment.
Hello,
I have done the change, but there is no ipn_handle_debug.log file in the folder.
Is it created automatically or should I create one?
It is automatically created for you when the IPN (payment notification is received). It appears that IPN is not being received by the plugin.
The following post is for the WP eStore plugin but the PayPal IPN concept is the same. Please have a read and it will give you good idea of how to find out what is wrong with your account or server (maybe you just need to enable IPN in your PayPal profile):
http://www.tipsandtricks-hq.com/forum/topic/how-and-when-to-enable-debug-and-what-does-it-do
Hello,
It's working now. Thanks.
Another question:
Does WP PDF Stamper send an email to the customer when using the API GET call? or does it not?
Thank you.
No, the API call is used to stamp the file only. This allows the 3rd party program to customize the rest of the behavior.
You must log in to post.