JUST--
|
v

Open catalog/checkout_process.php

Find:

if ($order->content_type != 'virtual') {
$email_order .= "n" . EMAIL_TEXT_DELIVERY_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $sendto, 0, '', "n") . "n";
}

$email_order .= "n" . EMAIL_TEXT_BILLING_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $billto, 0, '', "n") . "nn";

And replace with:

if ($order->content_type != 'virtual') {
/* $email_order .= "n" . EMAIL_TEXT_DELIVERY_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $sendto, 0, '', "n") . "n"; */
}

/* $email_order .= "n" . EMAIL_TEXT_BILLING_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $billto, 0, '', "n") . "nn"; */



More...