joaco2007-08-18 05:24 | Hi people! » Quick.Cart v2.x |
merci2007-08-20 08:56 | joaco - first of all, you should delete fields you don't want to have also from templates/orders_delivery.tpl. Then you have to make zip code not obligatory. Open file core/orders.php and delete from function checkOrderFields() line:
&& checkLength( $aForm['sZipCode'], 0 )
and in the same file above line
dbSaveOrder( $aForm );
paste code
$aForm['sZipCode'] = null;
|