Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Connecticut - error


Guest

Recommended Posts

Posted

I have a problem registering a new account for the state of Connecticut. I discovered that it's listed twice.

 

How can I correct this? :unsure:

 

I haven't found the state drop-down list in the database and/or php pages. Can someone steer me in the right direction?

 

Thanks.

Posted

In admin under Locations / Taxes, select Zones.

If Connecticut is listed 2 times, delete 1.

Hope this helps.

Posted

Connecticut is only listed once in the admin panel under tax zones.

 

It must be listed twice in my database.

Posted

The admin panel directly queries the db.

Posted

Then why is Connecticut showing up twice?

 

I cannot create an account from Connecticut because of this problem.

Posted

Delete Ct.

Try to create an account and see what happens.

Posted

Make sure that it isn't in twice. I found the duplicate entry and deleted it and that was fine.

 

If you are still having problems, post the link to your signup page and we'll look at it and see if we can figure out from this end.

Posted
Okay, what could be the reasons why a particular state's code, in my case, MI for Michigan will not work?

In admin under Locations / Taxes - Zones, find Michigan and see if the two letter code is listed. If not select edit, EDIT, click on update.

Posted

How do I make United States the default country in the drop-down menu?

Posted

In /includes/functions/html_output.php find this section:

// Creates a pull-down list of countries
function tep_get_country_list($name, $selected = '', $parameters = '') {
$countries_array = array(array('id' => '', 'text' => ''));
$countries = tep_get_countries();

Change to:

// Creates a pull-down list of countries
function tep_get_country_list($name, $selected = '', $parameters = '') {
$countries_array = array(array('id' => '223', 'text' => 'United States'));
$countries = tep_get_countries();

Posted

creating the US as default is in the documentation, search on the word 'country'

Archived

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

×
×
  • Create New...