Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Missing information


Guest

Recommended Posts

Posted

Customers delivery and billing address arn't showing up under their order history

 

and i can't see why, shows up everywhere else

Posted

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

Posted

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']);

Posted

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

Posted

Something to do with:

 

                            'street_address1' => $order['billing_street_address1'],
      'street_address2' => $order['billing_street_address2'],
         'street_address3' => $order['billing_street_address3'],

 

:-"

 

Matti

Posted

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 :)

Archived

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

×
×
  • Create New...