Guest Posted August 10, 2005 Posted August 10, 2005 Customers delivery and billing address arn't showing up under their order history and i can't see why, shows up everywhere else
Guest Posted August 12, 2005 Posted August 12, 2005 Check that you have the following in /includes/classes/order.php: $this->billing = array('name' => $order['billing_name'], 'company' => $order['billing_company'], 'street_address' => $order['billing_street_address'], 'suburb' => $order['billing_suburb'], 'city' => $order['billing_city'], 'postcode' => $order['billing_postcode'], 'state' => $order['billing_state'], 'country' => $order['billing_country'], 'format_id' => $order['billing_address_format_id']); Matti
Guest Posted August 12, 2005 Posted August 12, 2005 I do $this->billing = array('name' => $order['billing_name'], 'company' => $order['billing_company'], 'street_address1' => $order['billing_street_address1'], 'street_address2' => $order['billing_street_address2'], 'street_address3' => $order['billing_street_address3'], 'suburb' => $order['billing_suburb'], 'city' => $order['billing_city'], 'postcode' => $order['billing_postcode'], 'state' => $order['billing_state'], 'country' => $order['billing_country'], 'format_id' => $order['billing_address_format_id']);
Guest Posted August 12, 2005 Posted August 12, 2005 does anybody else know what it could be ? its bugging me because address is display ok in some place, then not at all in other places
Guest Posted August 13, 2005 Posted August 13, 2005 Something to do with: 'street_address1' => $order['billing_street_address1'], 'street_address2' => $order['billing_street_address2'], 'street_address3' => $order['billing_street_address3'], :-" Matti
Guest Posted August 15, 2005 Posted August 15, 2005 i thought it might be this, but i comment out these lines, problem still exists... I've add this myself, but this has been changed well before this issue arose. Thanks for helping so far :)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.