vch2011-12-16 12:57 | Hello. » Quick.Cart v4.x |
treewood (OpenSolution)2011-12-16 13:53 | edit: templates/orders_form.tpl and delete:
alt="simple"
from those fields you won't to be required.
<input type="text" name="sPhone" value="$aUser[sPhone]" maxlength="40" class="input" onblur="saveUserData( this.name, this.value )" id="oPhone" alt="simple" />
and change to
<input type="text" name="sPhone" value="$aUser[sPhone]" maxlength="40" class="input" onblur="saveUserData( this.name, this.value )" id="oPhone" />
&& throwStrLen( $aForm['sPhone'] ) > 2
|
vch2011-12-17 20:14 | thank you. |