In order to add the phone number to the email confirmation
I have modified checkout_process.php
accordin to gameparts post
this code
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";
}
changed to
if ($order->content_type != 'virtual') {
$email_order .= "\n" . EMAIL_TEXT_DELIVERY_ADDRESS . "\n" .
EMAIL_SEPARATOR . "\n" .
EMAIL_TEXT_MAIL . $order->customer['email_address'] . "\n" .
EMAIL_SEPARATOR . "\n" .
tep_address_label($customer_id, $sendto, 0, '', "\n") .
EMAIL_TEXT_PHONE . $order->customer['telephone']. "\n";
}
This works for me
only I have the phone number on the same line as country
like this
Quote
Mike Brown
Penny Lane
Manchester 215485
UNITED KINGDOMTelephone: 0912458575
Penny Lane
Manchester 215485
UNITED KINGDOMTelephone: 0912458575
I would like to place a <br> somewhere
Normaly it works in the language file but not in this case.??!
can somebody tell me how to do this please
Thanks















