Quote Originally Posted by tat2nu View Post
There is still no answer for those of us who want the State/Province dropdown that is on the create_account page to be the same State/Province method of selection that is on the add_customers page.

Could somebody smarter than me please figure this out. The way it sits now I can type in a state name but it does not seem to recognize the state in the customers address book so I need to go into the customers "my account" area to use the dropdown to select the state otherwise the cart does is not able to quote shipping.
I've been trying to figure this out for a while. Right now, what you type in the input field for the state gets put in the address_book table under the column entry_state, and the zone_id get filled in as zero. Problem is that the zone_id is where Zen looks for the taxes to be calculated from, hence everyone manually entered is not being charged taxes (and apparently the correct freight). The person in post # 119 changed the country to the drop down list using Zen's codes. I've tried following what they did, changing the names of the tables and columns according, but it doesn't work (big shock for me). I know it has to do with this section in the add_customers.php file:

Code:
    if (ACCOUNT_STATE == 'true') {

        echo '<tr>
            <td class="main">' . ENTRY_STATE . '</td>
            <td class="main">';

        $entry_state = zen_get_zone_name($cInfo->entry_country_id, $cInfo->entry_zone_id, $cInfo->entry_state);

        echo zen_draw_input_field('entry_state', zen_get_zone_name($cInfo->entry_country_id, $cInfo->entry_zone_id, $cInfo->entry_state)).'(Full Name)';
    }
Can anyone work this out? I'm sure it's a super speedy fix, but it would make my life so much easier since orders keep going through without taxes, so I am either loosing money cause I've missed it or having to manually adjust things.