如何在总量中免费发货Opencart?

时间:2015-10-26 07:58:20

标签: opencart

当数量大于或等于1000(qty> = 1000)时,我的客户需要免运费。

2 个答案:

答案 0 :(得分:2)

  

注意:不建议在核心中进行直接更改   文件。您可以对vqmod进行相同的更改。

(1)需要启用管理面板免费送货

转到管理员 - >扩展 - >运费 - >免运费 - >启用它

(2)打开文件目录/型号/ shipping / free.php并搜索

if (!$this->config->get('free_geo_zone_id')) {
            $status = true;
        } elseif ($query->num_rows) {
            $status = true;
        }

并替换下面的代码

 if (!$this->config->get('free_geo_zone_id') && ($this->cart->countProducts())>=1000) {
            $status = true;
        } elseif ($query->num_rows && ($this->cart->countProducts())>=1000) {
            $status = true;
        } 

答案 1 :(得分:0)

我们正在使用Free Shipping Plus,允许大量定制,为我们的客户提供免费送货服务。