Tuesday 12 May 2015

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();

No comments:

Post a Comment