i'm having problems passing the full state name to my payment module, gspay.
i think its passing the state abbreviation only and the gspay module has full state names in the dropdown menu, so its not automatically filling in the state on the payment page.
where is the code that transfers the state abbreviation to the payment module. id like to change it to transfer the full state name.
in the gspay payment module, heres the code that populates the state name and other payment variables, can i change anything here to grab the full state name? the other variables transfer Ok.
Code:zen_draw_hidden_field('customerFullName',$order->customer[firstname]." ".$order->customer[lastname] ) . zen_draw_hidden_field('customerAddress', $order->customer['street_address']) . zen_draw_hidden_field('customerCity', $order->customer['city']) . zen_draw_hidden_field('customerStateCode', !empty($stateCode) ? $stateCode : 'XX') . zen_draw_hidden_field('customerZip', $order->customer['postcode']) . zen_draw_hidden_field('customerCountry', $order->customer['country']['title']) . zen_draw_hidden_field('customerEmail', $order->customer['email_address']) . zen_draw_hidden_field('customerPhone', $order->customer['telephone']) . zen_draw_hidden_field('customerShippingFullName',$order->delivery[firstname]." ".$order->customer[lastname] ) . zen_draw_hidden_field('customerShippingAddress', $order->delivery['street_address']) . zen_draw_hidden_field('customerShippingCity', $order->delivery['city']) . zen_draw_hidden_field('customerShippingStateCode', !empty($deliveryStateCode) ? $deliveryStateCode: 'XX') . zen_draw_hidden_field('customerShippingZip', $order->delivery['postcode']) . zen_draw_hidden_field('customerShippingCountry', $order->delivery['country']['title']) . zen_draw_hidden_field('customerShippingEmail', $order->delivery['email_address']) . zen_draw_hidden_field('customerShippingPhone', $order->customer['telephone']) . "";



