I need to remove the customer Telephone and Fax numbers from the Order Confirmation email. I thought this could be done through config.xml, but that’s not the case it seems.
The email template calls:
{{var order.getBillingAddress().format(’html’)}}
-and-
{{var order.getShippingAddress().format(’html’)}}
How do I remove the telephone and fax from those fields?
Find where the getBillingAddress function is and duplicate it with a new name. Take out the phone numbers. Then call the new one in your email template.
Do the same for getShippingAddress.