Weiry Posted February 11, 2009 Share Posted February 11, 2009 This is the problem i am getting with the bank wire confirmation email. Hi ###### ####,Your order #15 historyYour order has been placed successfully, and will be shipped as soon as payment is received.Please note that you have selected to pay by bank wire. Please send your wire to :{bankwire_owner}{bankwire_details}{bankwire_address}Order total amout is $315.00You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our website. It seems to be that only the bank wire details are not displayingWhat can i do to make the bank details correctly appear?The bank wire details have been configured also. Link to comment Share on other sites More sharing options...
msk69 Posted February 11, 2009 Share Posted February 11, 2009 \mails\en\bankwire.txt and html. Just remove the code and hardcode your bankdetails there. :-) Link to comment Share on other sites More sharing options...
Weiry Posted February 12, 2009 Author Share Posted February 12, 2009 so there is no actual fix to get the details from the database?i was hoping not to hard code it in. Link to comment Share on other sites More sharing options...
spott Posted February 12, 2009 Share Posted February 12, 2009 What version of PrestaShop?To me its work fine.Is it text or html file, what you get? Link to comment Share on other sites More sharing options...
Masino Sinaga Posted August 19, 2009 Share Posted August 19, 2009 This is the problem i am getting with the bank wire confirmation email. Hi ###### ####,Your order #15 historyYour order has been placed successfully, and will be shipped as soon as payment is received.Please note that you have selected to pay by bank wire. Please send your wire to :{bankwire_owner}{bankwire_details}{bankwire_address}Order total amout is $315.00You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our website. It seems to be that only the bank wire details are not displayingWhat can i do to make the bank details correctly appear?The bank wire details have been configured also. Actually, that only happens when you edit the order status from Orders tab in admin/backoffice panel. To solve this problem, try to do this:1) Open your {youradmindirectory}\tabs\AdminOrders.php file, and FIND this code: $templateVars = array('{followup}' => ($history->id_order_state == _PS_OS_SHIPPING_ AND $order->shipping_number) ? str_replace('@', $order->shipping_number, $carrier->url) : ''); 2) Replace that code above with this one below: $templateVars = array('{followup}' => ($history->id_order_state == _PS_OS_SHIPPING_ AND $order->shipping_number) ? str_replace('@', $order->shipping_number, $carrier->url) : '', '{bankwire_owner}' => Configuration::get('BANK_WIRE_OWNER'), '{bankwire_details}' => nl2br(Configuration::get('BANK_WIRE_DETAILS')), '{bankwire_address}' => nl2br(Configuration::get('BANK_WIRE_ADDRESS')) ); I have tried it, and it works good now. Hope this is helpful. Cheers! Link to comment Share on other sites More sharing options...
alphabravo8 Posted November 2, 2009 Share Posted November 2, 2009 Hi,I've tried this solution. I replaced the code line 111 as described here but it doesn't fix the bug for me. do I forget to do something ?thks Link to comment Share on other sites More sharing options...
brandonc503 Posted November 4, 2009 Share Posted November 4, 2009 im having same issue and that fix only made blank section in email. Link to comment Share on other sites More sharing options...
ALbi87 Posted January 28, 2010 Share Posted January 28, 2010 It works for me, thx ! Link to comment Share on other sites More sharing options...
Evgeny Posted February 25, 2010 Share Posted February 25, 2010 And for me. Prestashop ver. 1.2 Link to comment Share on other sites More sharing options...
piekielny Posted June 9, 2010 Share Posted June 9, 2010 Also for me. Presta 1.3PLCheers Link to comment Share on other sites More sharing options...
Rafiki Posted August 22, 2010 Share Posted August 22, 2010 It works for me!!THANK YOU! Link to comment Share on other sites More sharing options...
Rolf Posted October 5, 2010 Share Posted October 5, 2010 It's works perfect, thank you!Best regardsRolf Link to comment Share on other sites More sharing options...
eddi Posted November 11, 2010 Share Posted November 11, 2010 thanks, works fine!but it worked before I did some changes in status. strange. Link to comment Share on other sites More sharing options...
Orhan Ozdemir Posted May 5, 2011 Share Posted May 5, 2011 It works for me too.But I made one extra.In e-mail file "mails/tr/bankwire.html"I modified following lines:{bankwire_owner}{bankwire_home_html}IBAN : {bankwire_iban}BIC : {bankwire_bic} NEW FILE has correct variables as following:BANKA: {bankwire_address}HESAP SAHİBİ: {bankwire_owner}HESAP NO VE IBAN: {bankwire_details}And it works Link to comment Share on other sites More sharing options...
Orhan Ozdemir Posted May 5, 2011 Share Posted May 5, 2011 I replaced the code line 111 as described here but it doesn’t fix the bug for me. Did you try to edit your "bankwire.html" file in your own language folder ? Link to comment Share on other sites More sharing options...
Recommended Posts