How I did it in 1.3.9 Clean Install of the cart...

(make a copy of your file to a safe place in the event you have any issues...)

I added the following code at about line 946 in the /includes/classes/order.php

Quote Originally Posted by ksoup View Post


PHP Code:
     //comments area
    
if ($this->info['comments']) {
      
$email_order .= EMAIL_TEXT_ORDER_COMMENTS ' ' zen_db_output($this->info['comments']) . "\n\n";
      
$html_msg['ORDER_COMMENTS'] = EMAIL_TEXT_ORDER_COMMENTS ' ' nl2br(zen_db_output($this->info['comments']));
    } else {
      
$html_msg['ORDER_COMMENTS'] = '';
    }