How to restrict other shipping methods - Magento

255 Views Asked by At

By $result = Mage::getModel('shipping/rate_result'); method I can create a new shipping rate. But How can I restrict other shipping methods in this action?

1

There are 1 best solutions below

0
On BEST ANSWER

Grab All active shipping methods, loop through each one, and see if it matches your desired one

$activeCarriers = Mage::getModel('shipping/config')->getActiveCarriers();
foreach($activeCarriers as $code => $method) {
    if($code == 'yourcode') {
         $result = Mage::getModel('shipping/rate_result');
    }

}