Page 1 of 1

Shopping cart - keep items longer (increase timeout)

Posted: Wed Oct 18, 2017 2:23 pm
by sitedeveloper999
OC 3.0.2.0 - how can I increase the duration of items staying in the shopping cart? Right now, it seems to delete the cart after 30 minutes or so.
Where is this timer controlled from?

Re: Shopping cart - keep items longer (increase timeout)

Posted: Fri Oct 20, 2017 9:38 pm
by grgr
1 Hour.

../system/library/cart.php

Code: Select all

		// Remove all the expired carts with no customer ID
		$this->db->query("DELETE FROM " . DB_PREFIX . "cart WHERE customer_id = '0' AND date_added < DATE_SUB(NOW(), INTERVAL 1 HOUR)");