jgessentials Posted January 6, 2010 Share Posted January 6, 2010 Hi So here is my issue, I am using a contrib made by eps securenet. It all works great the only problem I have is that the shipping info they get on their side is not my shipping info. Here is the code: tep_draw_hidden_field('ExpiryDate', $this->cc_expiry_month . substr($this->cc_expiry_year, -2)) . tep_draw_hidden_field('CVV2Code', $this->cc_cvv2 ) . tep_draw_hidden_field('CardHolderName', $this->cc_card_owner) . tep_draw_hidden_field('AddressLine1', $order->billing['street_address']) . tep_draw_hidden_field('AptHouseNbr', $order->billing['apt_number']) . tep_draw_hidden_field('bill_city', $order->billing['city']) . tep_draw_hidden_field('bill_state', $order->billing['state']) . tep_draw_hidden_field('ZipCode', $order->billing['postcode']) . tep_draw_hidden_field('bill_country', $order->billing['country']['title']) . tep_draw_hidden_field('bill_phone', $order->customer['telephone']) . tep_draw_hidden_field('bill_email', $order->customer['email_address']) . tep_draw_hidden_field('ship_name', $order->delivery['firstname'] . " " . $order->delivery['lastname']) . tep_draw_hidden_field('ship_address1', $order->delivery['street_address']) . tep_draw_hidden_field('ship_city', $order->delivery['city']) . tep_draw_hidden_field('ship_state', $order->delivery['state']) . tep_draw_hidden_field('ship_aptHouse', $order->delivery['apt_number']) . tep_draw_hidden_field('ship_zipCode', $order->delivery['postcode']) . tep_draw_hidden_field('ship_country', $order->delivery['country']['title']) . tep_draw_hidden_field('ship_email', $order->customer['email_address']) . My thoughts is that the $order->delivery is wrong, does anyone know what I can use to make it get the right shipping info. I don't want to take the billing because that could be different. Thank you in advance for your reply julien Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.