View Single Post
  #2  
Old 04-27-2004, 02:54 AM
  shan's Avatar 
shan shan is offline
 

X-Guru
  
Join Date: Sep 2002
Location: Birmingham, UK
Posts: 6,163
 

Default

open main/states.tpl

Code:
{* $Id: states.tpl,v 1.1.4.3 2004/04/09 07:07:28 svowl Exp $ *} {if $states ne ""} <select name="{$name}" {$style}> <option value="Other">Other</option> {section name=state_idx loop=$states} <option value="{$states[state_idx].state_code}"{if $default eq $states[state_idx].state_code and $default_country eq $states[state_idx].country_code} selected{/if}>{$states[state_idx].country_code}: {$states[state_idx].state}</option> {/section} </select> {else} <input type=text size=32 name="{$name}" value="{$default}"> {/if}

change to

Code:
{* $Id: states.tpl,v 1.1.4.3 2004/04/09 07:07:28 svowl Exp $ *} {if $states ne ""} <select name="{$name}" {$style}> <option value="Other">Other</option> {section name=state_idx loop=$states} <option value="{$states[state_idx].state_code}"{if $default eq $states[state_idx].state_code and $default_country eq $states[state_idx].country_code} selected{/if}>{$states[state_idx].state}</option> {/section} </select> {else} <input type=text size=32 name="{$name}" value="{$default}"> {/if}
__________________
Looking for a reliable X-cart host ?
You wont go wrong with either of these.

EWD Hosting
Hands On Hosting
Reply With Quote