QUOTE (nanorock4 @ Dec 18 2006, 09:54 AM)

Does anyone know how to change the country dropdown lists to default to a specific country. As you know they default to aphabetical order. I want to be able to have United States to be listed out of order at the top of the list with the others in the normal order. Is this a php edit or a SQL edit and where and how would it be done?
Thanks,
Ok I found it after digging through the custimization info.
You can also make any country appear by default while still having the pull down list available.
In includes/functions/html_output.php at about line 299 find:
$countries_array = array(array('id' => '', 'text' => PULL_DOWN_DEFAULT));
Replace (for the United States) with...
// $countries_array = array(array('id' => '', 'text' => PULL_DOWN_DEFAULT));
$countries_array = array(array('id' => '223', 'text' => 'United States'));
I just commented out the original line to keep it as a reference.
You can change the country id and the text in this line to make any country appear by default.
Thanks anyway