Zen Cart Logo
Forums / Addon Payment Modules / Ack, billing address not showing on orders

Ack, billing address not showing on orders

Locked

Views: 1,731

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
13 Sep 2006, 4:08 PM
#1
dbrewster avatar

dbrewster

Zen Follower

Join Date:
Jul 2005
Location:
Charlottesville, VA
Posts:
376
Plugin Contributions:
0

Ack, billing address not showing on orders

Just updated my main bookstore and having a problem.

The billing address is not showing on order, on invoices, and is not being written to the database.

I wonder if it could be this customization to includes/classes/order.php, which is for printing purchase order info.

line 914 from version 1.3.0 with po modification:

$html_msg['PAYMENT_METHOD_FOOTER'] = (is_object($GLOBALS[$_SESSION['payment']]) ? sprintf($GLOBALS[$payment_class]->email_footer, $this->info['account_name'], $this->info['account_number'], $this->info['po_number']) : ' ');

if you think so...

how to reconcile it with the new print statement:

line 956 from version 1.3.5

    $html_msg['PAYMENT_METHOD_FOOTER'] = (is_object($GLOBALS[$_SESSION['payment']]) ? $GLOBALS[$payment_class]->email_footer : $this->info['cc_type'] );

Would love to hear some ideas.

13 Sep 2006, 5:44 PM
#2
dbrewster avatar

dbrewster

Zen Follower

Join Date:
Jul 2005
Location:
Charlottesville, VA
Posts:
376
Plugin Contributions:
0

Re: Ack, billing address not showing on orders

Well, I disabled purchase order, and it seems that this had nothing to do with this problem.

I'm trying to track down what would cause billing address to fail to write to database.

---Diana