Magento How to set default shipping method

$quote = $this->getOnepage()->getQuote();
$country = "FR";
$address = $quote->getShippingAddress();
$address->setCountryId($country)->setCollectShippingRates(true)->collectShippingRates();
$quote->setShippingMethod('freeshipping')->save();

Leave a comment