本文介绍了不显示某些特定城市的货到付款方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么方法可以显示/隐藏某些特定城市的货到付款"付款方式.谁能指导我如何/在何处启动代码以实现此自定义功能.
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;
}
这篇关于不显示某些特定城市的货到付款方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!