Opencart:购物满 2000 比索免运费
Opencart: make shipping free when purchases reached 2,000 pesos
我之前已经尝试搜索过这个,但我的 opencart 页面给了我一些错误和错误,这就是我重新上传我的网站的原因。唯一的问题是当购买量达到 2,000 件时,运费将为 0(零)或免费。使用其他论坛提供的代码,它 disappears/disabling 运费,这就是它在结帐页面上出现一些错误的原因(例如,无法单击 "continue" 按钮,因为没有选择运费) .我想做的是将主值 (120.00) 设为零。
这是 Opencart 的 flat.php(我使用的唯一运输方式):
<?php
class ModelShippingFlat extends Model {
function getQuote($address) {
$this->load->language('shipping/flat');
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get('flat_geo_zone_id') . "' AND country_id = '" . (int)$address['country_id'] . "' AND (zone_id = '" . (int)$address['zone_id'] . "' OR zone_id = '0')");
if (!$this->config->get('flat_geo_zone_id')) {
$status = true;
} elseif ($query->num_rows) {
$status = true;
} else {
$status = false;
}
$method_data = array();
if ($status) {
$quote_data = array();
$quote_data['flat'] = array(
'code' => 'flat.flat',
'title' => $this->language->get('text_description'),
'cost' => $this->config->get('flat_cost'),
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate($this->config->get('flat_cost'), $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);
$method_data = array(
'code' => 'flat',
'title' => $this->language->get('text_title'),
'quote' => $quote_data,
'sort_order' => $this->config->get('flat_sort_order'),
'error' => false
);
}
return $method_data;
}
}
我感谢任何建议、建议或意见。谢谢大家。
按照以下说明获得超过 2,000 比索的免费送货功能
In catalog\model\shipping\free.php
在$method_data = array();
之前写下代码
if ($this->cart->getSubTotal() < $this->config->get('free_total')){
$status = false;
}
And In catalog\model\shipping\flat.php
在$method_data = array();
之前写下代码
if ($this->cart->getSubTotal() >= $this->config->get('free_total')) {
$status = false;
}
我之前已经尝试搜索过这个,但我的 opencart 页面给了我一些错误和错误,这就是我重新上传我的网站的原因。唯一的问题是当购买量达到 2,000 件时,运费将为 0(零)或免费。使用其他论坛提供的代码,它 disappears/disabling 运费,这就是它在结帐页面上出现一些错误的原因(例如,无法单击 "continue" 按钮,因为没有选择运费) .我想做的是将主值 (120.00) 设为零。
这是 Opencart 的 flat.php(我使用的唯一运输方式):
<?php
class ModelShippingFlat extends Model {
function getQuote($address) {
$this->load->language('shipping/flat');
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get('flat_geo_zone_id') . "' AND country_id = '" . (int)$address['country_id'] . "' AND (zone_id = '" . (int)$address['zone_id'] . "' OR zone_id = '0')");
if (!$this->config->get('flat_geo_zone_id')) {
$status = true;
} elseif ($query->num_rows) {
$status = true;
} else {
$status = false;
}
$method_data = array();
if ($status) {
$quote_data = array();
$quote_data['flat'] = array(
'code' => 'flat.flat',
'title' => $this->language->get('text_description'),
'cost' => $this->config->get('flat_cost'),
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate($this->config->get('flat_cost'), $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);
$method_data = array(
'code' => 'flat',
'title' => $this->language->get('text_title'),
'quote' => $quote_data,
'sort_order' => $this->config->get('flat_sort_order'),
'error' => false
);
}
return $method_data;
}
}
我感谢任何建议、建议或意见。谢谢大家。
按照以下说明获得超过 2,000 比索的免费送货功能
In catalog\model\shipping\free.php
在$method_data = array();
之前写下代码if ($this->cart->getSubTotal() < $this->config->get('free_total')){
$status = false;
}
And In catalog\model\shipping\flat.php
在$method_data = array();
之前写下代码if ($this->cart->getSubTotal() >= $this->config->get('free_total')) {
$status = false;
}