Magento - PHP - 如何获取会话当前送货方法标题

时间:2015-09-28 16:40:55

标签: php magento session

这是我用于获取当前会话送货方法代码的代码:

<?PHP echo Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingMethod(); ?>

但是这段代码只给我当前的会话送货方法代码而不是送货标题。

如何获取当前会话送货方式标题?

提前致谢!

2 个答案:

答案 0 :(得分:5)

您可以获取当前会话送货方式代码&amp;以下描述

获取送货方式代码

 <?php echo Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingMethod(); ?>

获取送货方式说明/标题

<?php echo Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingDescription() ?>

答案 1 :(得分:0)

Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingDescription();