Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 08-22-2010 14:40:42

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Create New Account - How to remove foreign countries?

When a customer creates a new account, he/she has the option to choose a country different than the U.S. (under Address). How to limit the selection of countries just to the U.S.? I need to do this because Google Checkout doesn't let the customer to select international shipping, so I have to pay for it out of my pocket... It would be better if i simply don't allow anyone outside the U.S. to buy from my store. Any suggestions? Thank you!

Offline

 

#2 08-22-2010 14:45:30

Dave
Member
Registered: 07-05-2003
Posts: 11233

Re: Create New Account - How to remove foreign countries?

Offline

 

#3 08-22-2010 14:51:01

Dave
Member
Registered: 07-05-2003
Posts: 11233

Re: Create New Account - How to remove foreign countries?

The raw database command below will make everything but the US unavailable for addresses for contact and delivery.

Code:

update `core_country` set `usecon` = 0, `usedel` = 0 where`abb` != 'US'

Offline

 

#4 08-22-2010 19:29:52

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: Create New Account - How to remove foreign countries?

Thank you kindly.

Offline

 

Board footer