最大运费 prestashop 1.7
Max shipping cost prestashop 1.7
PrestaShop 1.7如何设置每199的最大发货量
可以小一点,但不能超过199
在哪个文件中查找与发货金额对应的变量?
从 Cart
覆盖函数 getPackageShippingCost()
class:
class Cart extends CartCore
{
public function getPackageShippingCost($id_carrier = null, $use_tax = true, Country $default_country = null, $product_list = null, $id_zone = null)
{
$shipping_cost = parent::getPackageShippingCost($id_carrier, $use_tax, $default_country, $product_list, $id_zone);
if ($shipping_cost > 199) {
return 199;
}
}
}
记得删除 class_index.php
并清除缓存。
PrestaShop 1.7如何设置每199的最大发货量 可以小一点,但不能超过199 在哪个文件中查找与发货金额对应的变量?
从 Cart
覆盖函数 getPackageShippingCost()
class:
class Cart extends CartCore
{
public function getPackageShippingCost($id_carrier = null, $use_tax = true, Country $default_country = null, $product_list = null, $id_zone = null)
{
$shipping_cost = parent::getPackageShippingCost($id_carrier, $use_tax, $default_country, $product_list, $id_zone);
if ($shipping_cost > 199) {
return 199;
}
}
}
记得删除 class_index.php
并清除缓存。