4

我试图隐藏一些基于 shipping_method.phtml 中的文本/代码,具体取决于所选或输入的送货地址的国家/地区是否为法国。

我发现的唯一代码是

Mage::getSingleton('checkout/type_onepage')->getQuote()->getShippingAddress()->getCountryId()

但这所做的只是返回地址簿中我默认地址的 countryID。因此,当地址已经在地址簿中时,代码有效,但如果客户决定他/她要将其发送到新地址,则代码无效。

所以我需要一种方法来访问在 php/javascript 中选择/输入的 CountryID(应该存储在会话中的某个地方,因为它显示在进度侧边栏中)。

请注意,我在 magento CE 1.7.0.2 中使用标准单页结帐。

4

3 回答 3

8

您可以尝试使用此代码$this->getQuote()->getShippingAddress()->getCountry()获取country id

于 2012-10-15T07:36:10.633 回答
2

问题是这段代码在页面加载时被执行,基本上运输方法块只是隐藏,直到你到达那个步骤。这意味着

$this->getQuote()->getShippingAddress()->getCountry()

l

Ajax 加载的唯一内容是可用的运输方式,所以我通过挂钩来解决它

app/design/base/default/template/checkout/onepage/shipping_method/available.phtml 

并添加以下 javascript 代码

<?php //Show extra shipping options only if the shipping address is outside of FRANCE ?>
<script type="text/javascript">

  var countryID = '<?= Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getData('country_id') ?>';
  jQuery('#ownTransport')[countryID == 'FR' ? 'hide' : 'show']();

</script>

供参考:中的代码

app/design/XXX/XXX/template/checkout/onepage/shipping_method.phtml 

曾是

<form id="co-shipping-method-form" class="stack-form" action="">
<div id="checkout-shipping-method-load">
    <?php echo $this->getChildHtml('available') ?>
</div>

<script type="text/javascript">
    //<![CDATA[
        var shippingMethod = new ShippingMethod('co-shipping-method-form', "<?php echo $this->getUrl('checkout/onepage/saveShippingMethod') ?>");
    //]]>
</script>

<div id="onepage-checkout-shipping-method-additional-load">
    <?php echo $this->getChildHtml('additional') ?>
</div>

<?php //ADD AMASTY FIELDS ?>

<?php //Show extra shipping options only if the shipping address is outside of FRANCE ?>

<div id="ownTransport">
<?php
    echo Mage::helper('amorderattr')->fields('shipping_method'); 
?>
</div>

<div id="shipping-method-buttons-container" class="buttons-set">
    <button class="button" onclick="shippingMethod.save()"><?php echo $this->__('Continue') ?></button>
    <span class="please-wait" id="shipping-method-please-wait" style="display:none;"><?php echo $this->__('Loading') ?></span>
</div>

希望这可以帮助某人!

于 2012-09-30T11:16:53.200 回答
0

如果您在 magento 中使用 onepage checkout,请使用此代码

Mage::getSingleton('checkout/type_onepage')->getQuote()->getShippingAddress()
 ->getCountryId();

你也可以使用:-

$countryId =Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getData('country_id');
于 2012-10-15T07:28:15.127 回答