【问题标题】:Magento - PHP - How to get session current shipping method titleMagento - PHP - 如何获取会话当前的运输方式标题
【发布时间】:2015-09-28 16:40:54
【问题描述】:

这是我用于获取当前会话运输方式代码的代码:

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

但是这个代码只给了我当前会话的运输方式代码而不是运输标题。

如何获取当前会话的运输方式标题?

提前致谢!

【问题讨论】:

标签: php magento session


【解决方案1】:

您可以通过以下方式获取当前会话的运输方式代码和描述

获取送货方式代码

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

获取运输方式描述/标题

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

【讨论】:

  • 使用观察者如何获取可用的运输方式? @Supravat M
【解决方案2】:
Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingDescription();

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-10-23
    • 2020-06-04
    • 2011-12-06
    相关资源
    最近更新 更多