我正在使用opencart。我希望在商品数量大于或等于3时免收运费。 我尝试了此代码,但无法正常工作。
if (!$this->config->get('free_geo_zone_id') && ($this->cart->countProducts())>=3) {
$status = true;
} elseif ($query->num_rows && ($this->cart->countProducts())>=3) {
$status = true;
}