在opencart上限制货到付款(cod)

时间:2017-01-09 13:41:57

标签: php opencart2.x

我想知道当购物车中有产品时,是否有办法禁用鳕鱼(货到付款)。

我找到了这段代码:

$weight = $this->getWeight();
if($weight>1)
{
$enabled=false;
}

我想把它放在cod.php中,但没有成功。 多数民众赞成我正在尝试做的是:当产品的重量超过1时,禁用鳕鱼。 你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

我找到了一个由#Johnathan

添加的解决方案
    IN:/catalog/model/payment/cod.php
    AFTER:
    public function getMethod($address, $total) {
    ADD:
    if ($this->cart->getWeight() > 1) return; 

所以现在当我把产品细节重量放在1以上时,当这个产品在购物车中时它会停用鳕鱼(货到付款)