Trentide 1 Posted October 17, 2012 Thanks for looking at my post. I've searched the forums and come up with nothing. I have a OSC 2.3 site. I'm looking for a shipping module that will offer free shipping for all US and Canadian customers, but will also allow them to select faster overnight methods of delivery, if they want it. I would only offer this free shipping to US and Canada so there needs to be a method for charging for international orders. I appreciate any and all help on this. Thanks so much, Jason Share this post Link to post Share on other sites
♥mattjt83 133 Posted October 17, 2012 You can just take an already existing module like the flat rate module and rework it so it allows free shipping: if ( ($order->delivery['country']['id'] == '223') OR ($order->delivery['country']['id'] == 'Canadas country id') ) { return $this->quotes; }else{ return false; } Matt Share this post Link to post Share on other sites
Trentide 1 Posted October 17, 2012 Thanks Matt. My php skill is terrible. I can usually edit most contributions, however. Also, if I did rework the free shipping module how would I charge for overnight shipping? Jason Share this post Link to post Share on other sites