From here I've managed to add my required shipping methods, and set the point after which shipping is free. Thanks for all the tips.
But now I want to display on the verify form that the customer has qualified for free shipping so that it doesn't look like the shipping was accidentally omitted. I'd also like to add the line in the order confirmation I send out; just so the customer knows they got a bonus.
The free shipping is available after a certain dollar amount and my shipping logic is
@sc_shipping_logic = (
"|300.00-|||0.00",
"registered|0-299.99|||10.00",
"courier|0-299.99|||15.00");
in case that helps. Ideally I'd rather put the limit in a variable so it only needs to be changed in a single place, but hard wired will do.
Can anyone tell me which perl library I need to look in or how I might do this.
Haven't searched the pro forum yet