如果购物车中的产品超过 25 个,则显示自定义消息 (OpenCart)
Display a custom message if there are more than 25 products in shopping cart (OpenCart)
我有一个 OpenCart 在线 CD 市场。我希望当您将一些产品添加到购物车并转到购物车页面时,如果您购买超过 (>=) 25 件产品(CD)以显示消息“请联系我们了解超过 25 件 CD 的交货价格。”。
是否有一些插件可以用于它或其他方式?
感谢您的所有建议。提前致谢!
没那么难,创建一个函数为:
public function countProducts() {
return array_sum($this->session->data['cart']);
}
然后在您的购物车模板中添加以下代码(您要显示警告的位置):
<?php
if($this->cart->countProducts()>25){
//ofc add your html tags for nice error, this will come ugly :)
echo "Please contact us for Delivery Price of more than 25 CD's."
}
?>
类似的问题可以found here
我有一个 OpenCart 在线 CD 市场。我希望当您将一些产品添加到购物车并转到购物车页面时,如果您购买超过 (>=) 25 件产品(CD)以显示消息“请联系我们了解超过 25 件 CD 的交货价格。”。
是否有一些插件可以用于它或其他方式?
感谢您的所有建议。提前致谢!
没那么难,创建一个函数为:
public function countProducts() {
return array_sum($this->session->data['cart']);
}
然后在您的购物车模板中添加以下代码(您要显示警告的位置):
<?php
if($this->cart->countProducts()>25){
//ofc add your html tags for nice error, this will come ugly :)
echo "Please contact us for Delivery Price of more than 25 CD's."
}
?>
类似的问题可以found here