yoursantu Hi, To improve user experience, I want to store cart items to database table instead of Session. The cart items should exist on cart until user checkout or remove. Is it possible with current ti-ext-cart? Thank you.
[deleted] I think you’d struggle to do that without hacking the code and losing the ability to upgrade. The cart uses the cart class from flame https://github.com/tastyigniter/flame/blob/master/src/Cart/Cart.php You could listen for cart events (adding, updating, deleting) and track changes to your database that way.
yoursantu [deleted] Dear Ryan, Thank you very much for your reply. Currently the cart does`t saved cart items more than session expire or once add some items to the cart and it removes all items once logout from account. but i just wanted to keep them until remove or checkout. Thank you.