Please make the backup and follow the following steps, i have not tested it but hope it will work
Code: Select all
$template->data['payment_address'] = str_replace(array("\r\n", "\r", "\n"), '<br />', preg_replace(array("/\s\s+/", "/\r\r+/", "/\n\n+/"), '<br />', trim(str_replace($find, $replace, $format))));
Find the above code at catalog/model/checkout/order.php
just below it insert below
$template->data['payment_address'] = "";
Likewise
Code: Select all
$template->data['shipping_address'] = str_replace(array("\r\n", "\r", "\n"), '<br />', preg_replace(array("/\s\s+/", "/\r\r+/", "/\n\n+/"), '<br />', trim(str_replace($find, $replace, $format))));
Find the above code at catalog/model/checkout/order.php
just below it insert below
$template->data['shipping_address'] = "";
Let us know if anything happens
