不显示某些特定城市的货到付款方式 [英] Do not show cash on delivery methods for some specific cities

查看:101
本文介绍了不显示某些特定城市的货到付款方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么方法可以显示/隐藏某些特定城市的货到付款"付款方式. 谁能指导我如何/在何处启动代码以实现此自定义功能.

Is there any way to display/hide "Cash on delivery" payment method for some specific cities. Can anyone guide me how/where to start code for this to achieve this custom functionality.

谢谢

推荐答案

看看@ 使用payment_method_is_active观察者,您可以加载当前的结帐会话报价,并检查订单将运送到哪个城市.

Using payment_method_is_active observer you could load the current checkout session quote and check what city the order is be ship to.

$checkout = Mage::getSingleton('checkout/session')->getQuote();
$shipping = $checkout->getShippingAddress();

$cashOnDeliveryCities = array('city name 1','city name 2',..)

if(in_array($shipping->getCity(), $cashOnDeliveryCities)){
    $result->isAvailable = true;
}else{
    $result->isAvailable = false;
}

这篇关于不显示某些特定城市的货到付款方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆