anth wrote
trying out this feature, when you select either COD or Paypal and press payment it just comes back to the same page.
Any ideas ?
Oh thats not nice, its another known bug and its why am working hard to get the next release out there, the next releast should be bug free, maybe you can also help testing the master version?
Lets try this first: Go to main/controllers/Checkout.php replace the block within line 70 and 73
if (isset($order_data['order_id']) OR (!empty($order_data['customer_id']) AND $order_data['customer_id'] !== $this->customer->getId())) {
$order_data = array();
$this->session->unset_userdata('order_data');
}
with
if (isset($order_data['order_id']) AND isset($order_data['customer_id'])) {
$this->load->model('Statuses_model');
$order_status_history = $this->Statuses_model->getStatusHistory('order', $order_data['order_id']);
if ($order_data['customer_id'] !== $this->customer->getId() OR !empty($order_status_history)) {
$order_data = array();
$this->session->unset_userdata('order_data');
}
}