0

将新产品添加到购物车后,我想将购物车订单列表设为空。事实上,每次只有在产品上才能放入购物车。坦克斯

4

2 回答 2

4

添加自定义逻辑的 2 种方法:

  • 创建您自己的模块并将其连接到“actionCartSave”
  • 覆盖“Cart”类中的“add”和“update”方法(/override/classes/Cartp.php)

编辑:第二种方式错误,因为无限更新循环。

这是一个执行此操作的模块:

class OneProductCart extends Module {
    public function __construct() {
        $this->name = 'oneproductcart';
        $this->tab = 'front_office_features';
        $this->version = '1.0';
        $this->author = 'SJousse';
        $this->need_instance = 0;
        parent::__construct();
        $this->displayName = $this->l('One Product Cart');
        $this->description = $this->l('Keep only last product in cart.');
    }
    public function install() {
        return (parent::install() && $this->registerHook('actionCartSave'));
    }
    public function hookActionCartSave($params) {
        $cart = $params['cart'];
        $last = $cart->getLastProduct();
        $prods = $cart->getProducts();

        foreach ($prods as $prod)
            if ($prod['id_product'] != $last['id_product'])
                $cart->deleteProduct($prod['id_product']);
    }
}
于 2013-01-24T09:25:22.300 回答
2

对于使用 Prestashop v 1.4.9 并创建了一个模块的人:

称呼global $smarty, $cart;

然后运行函数$cart->delete();

 function hookHome($params)
    {

    global $smarty, $cart;
    /** some code here **/

    $cart->delete();

    }
于 2013-12-11T19:20:23.040 回答