Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

checkout_process.php help


burghbiz

Recommended Posts

Posted

Hello,

 

If anyone can help me with this I would greatly appreciate it.

 

I am looking to add some info at the bottom of my order confirmation email..

 

At the bottom of the email I receive the last thing is the credit car info/type

 

I would like below that to have the customers name in this format

 

First name: customers first name

Last name: customers last name

 

 

Can anyone help?

Posted

In catalog/checkout_process.php - around line 255:

 

      $email_order .= $payment_class->email_footer . "\n\n";

 

after this add:

 

      $email_order .= 'First name: ' . $order->customer['firstname'] . "\n";
     $email_order .= 'Last name: ' . $order->customer['lastname'] . "\n\n";

 

Matti

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...