lightdown Posted January 3, 2011 Share Posted January 3, 2011 Hi everybody ;-)I´d like to know how to send the order message (textarea in the first step) in the email order_conf.htmlThis message is in BO, but i need to send it by email with the order.Is it possible?Thanks Link to comment Share on other sites More sharing options...
rocky Posted January 4, 2011 Share Posted January 4, 2011 Change line 380 of classes/PaymentModule.php (in PrestaShop v1.3.5) from: '{total_wrapping}' => Tools::displayPrice($order->total_wrapping, $currency, false, false)); to: '{total_wrapping}' => Tools::displayPrice($order->total_wrapping, $currency, false, false), '{order_message}' => isset($message) ? $message : ''); Then you should be able to use {order_message} in order_conf.html and order_conf.txt to display the order message. Link to comment Share on other sites More sharing options...
Stefand Posted January 13, 2011 Share Posted January 13, 2011 How can I dispaly the customer message in the PDF invoice? Link to comment Share on other sites More sharing options...
MNT Posted June 30, 2011 Share Posted June 30, 2011 Hello,I did that but still doesn't work, I got the message as 'object' text not the real message, can you help please.Thanks Link to comment Share on other sites More sharing options...
rocky Posted June 30, 2011 Share Posted June 30, 2011 Try: '{total_wrapping}' => Tools::displayPrice($order->total_wrapping, $currency, false, false), '{order_message}' => isset($message) ? $message->message : ''); Link to comment Share on other sites More sharing options...
MNT Posted June 30, 2011 Share Posted June 30, 2011 Great it works, many Thanks Link to comment Share on other sites More sharing options...
Kaspi88 Posted August 26, 2013 Share Posted August 26, 2013 and version 1.5.x ?? Thanks Link to comment Share on other sites More sharing options...
Pman 77 Posted September 18, 2013 Share Posted September 18, 2013 Hi, I need the same for version 1.5.4, any updates would be great. Many thanks Patrick Link to comment Share on other sites More sharing options...
abellasmith Posted September 19, 2013 Share Posted September 19, 2013 It works well for 1.4x Link to comment Share on other sites More sharing options...
Recommended Posts