brandonc503 Posted July 14, 2009 Share Posted July 14, 2009 I would like to change where the table under Shipping > Fees: Carriers… it shows the zones you selected and the weight or dollar ranges, to be in % instead of $.. so that the top part with handling, free shipping starts at.. and billing according to:… stays the same.Found some lines in Carrier.php $shipping_cost += $carrier->getDeliveryPriceByPrice($orderTotal, $id_zone);Insted of adding the order total to the shipping stored for that carrier in that zone.. I want to get get percent of total order.. this percent would be stored in Shipping > Carriers > Fees... where currently is a dollar amount. Link to comment Share on other sites More sharing options...
brandonc503 Posted July 21, 2009 Author Share Posted July 21, 2009 I got it.. just changed /classes/Cart.php$shipping_cost = $orderTotal * ($carrier->getDeliveryPriceByPrice($orderTotal, $id_zone)/100); Link to comment Share on other sites More sharing options...
Recommended Posts