Can anyone tell me how to add text to the order conformation (HTML Mail Order Details)? Would like to add adress and bank account because customers have to pay upfront. QC 1.2
Thanks in advance, Joop
Becky
2006-04-26 16:10
Hi Joop,
I conquered that problem by adding some extra fields in config/general.php.
$config['paypal'] ="info@laruewebdesign.com"; $config['payto'] ="Payable to Name"; $config['payaddress'] ="Be sure to include complete address";
You also then need to add to the language file. Once that was completed, then I added the following info to messages.tpl, some of which the answers were found on this board already:
<!-- BEGIN ORDER_PP_SP_EG --> <div id="message"> <div id="ok"> Thank you for shopping with us. Your order has been received. Please click the button below to finish the checkout process. <br /><br />
I think that was it, but this accomplished getting the payment info on /index.php?p=ordersDelivery and the payment information is configurable in the admin section. You might need to fix it to your own specifications.
I really hope this helps you with what you are trying to do, I havent tried adding variables to mail forms yet, but since they work elsewhere I am sure they will work on print and mail forms also.
~Joop
2006-04-26 22:44
Hi Becky
More then I hoped for and probably need! Don't know if I need all of it but it shurely puts me in the right directions.