Rassell Posted March 17, 2013 Share Posted March 17, 2013 Hi, I'm trying to empty the shopping car in a .php or in a .tpl, I have tried with: $cart = new Cart('$id_cookie_carrito'); $cart->delete(); But it doesnt work... Thank you in advance. Link to comment Share on other sites More sharing options...
Radu Posted March 17, 2013 Share Posted March 17, 2013 in a controller (not .tpl it won't work) $this->context->cart->delete(); Your code should work too but too but you added an extra ' which is used for string delimiters not variables $cart = new Cart($id_cookie_carrito); $cart->delete(); Link to comment Share on other sites More sharing options...
Rassell Posted March 17, 2013 Author Share Posted March 17, 2013 in a controller (not .tpl it won't work) $this->context->cart->delete(); Your code should work too but too but you added an extra ' which is used for string delimiters not variables $cart = new Cart($id_cookie_carrito); $cart->delete(); Ok thx i will try it Link to comment Share on other sites More sharing options...
Recommended Posts