
Originally Posted by
tat2nu
I love the add customers from admin module by Rick Riehle but I was wondering if I can set the default country to United States in stead of being alphabetically listed. I searched cut can not seem to find posts addressing this.
thanks,
Marc
I want to do the same. I think we need to adjust something on these lines:
Code:
if ($error == true) {
if ($entry_country_error == true) {
echo zen_draw_pull_down_menu('entry_country_id', zen_get_countries(), $cInfo->entry_country_id) . ' ' . ENTRY_COUNTRY_ERROR;
} else {
echo zen_get_country_name($cInfo->entry_country_id) . zen_draw_hidden_field('entry_country_id');
}
} else {
echo zen_draw_pull_down_menu('entry_country_id', zen_get_countries(), $cInfo->entry_country_id);
}
But I can not figure it out. I successfully set this up for the account creation page, but now I forgot how I did it. Maybe someone else can help on this?