Shipping mod ALTER TABLE `xcart_shipping` ADD `mintotal` DECIMAL( 12, 2 ) NOT NULL DEFAULT '0.00' ; ALTER TABLE `xcart_shipping` ADD `maxtotal` DECIMAL( 12, 2 ) NOT NULL DEFAULT '0.00' ; admin/shipping.php Before : func_array2update("shipping", $arr, "shippingid = '$id'"); Add: // shipping method price ranges - EJC $arr['mintotal'] = func_convert_number($arr['mintotal']); $arr['maxtotal'] = func_convert_number($arr['maxtotal']); // / shipping method price ranges - EJC Before: func_array2insert("shipping", $add); Add: // shipping method price ranges - EJC $arr['mintotal'] = func_convert_number($arr['mintotal']); $arr['maxtotal'] = func_convert_number($arr['maxtotal']); // / shipping method price ranges - EJC in skin1/admin/main/shipping.tpl After: