ファイルがありapp/design/frontend/hopnew/default/template/checkout/cart/shipping.phtml
ます。その中で、私がやりたいことは、最後のフォーム送信で設定された配送方法を取得することだけです. 私はこれらすべてのステートメントを試しましたが、それらはすべて何もエコーしません:
<?php
echo $this->getAddressShippingMethod();
echo "111<br />";
echo $this->getAddress()->getShippingMethod();
echo "222<br />";
echo $this->getQuote()->getShippingAddress()->getShippingMethod();
echo "333<br />";
echo $this->getCheckout()->getQuote();
echo "444<br />";
echo Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingMethod();
echo "555<br />";
echo $this->getQuote();
echo "666<br />";
echo $this->getCheckout();
echo "777<br />";
echo $this->getAddress();
echo "888<br />";
echo Mage::getSingleton('checkout/session')->getQuote();
echo "999<br />";
echo Mage::getSingleton('checkout/session')->getCheckout();
echo "10<br />";
echo Mage::getSingleton('checkout/session')->getAddress();
echo "11<br />";
// echo $this->_getQuote()->getShippingAddress()->getShippingMethod();
echo "12<br />";
実際に配送方法が保存されていることを確認しestimateUpdatePostAction()
ました。app/code/core/Mage/Checkout/controllers/CartController.php
では、shipping.phtml ファイルからそれを取得するにはどうすればよいでしょうか。