Überprüfen ob Versandmethoden verfügbar sind.
Snippet Code
public function haveShippingMethods()
{
if (count(Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingRatesCollection())) {
return true;
}
return false;
}