This can be solved quite simply by modifying system/library/customer.php login function as follows (starting line 53):
from:
Code: Select all
if ($customer_query->num_rows) {
$this->session->data['customer_id'] = $customer_query->row['customer_id'];
Code: Select all
if ($customer_query->num_rows) {
unset($this->session->data['cart']);
$this->session->data['customer_id'] = $customer_query->row['customer_id'];
FW