First of all I want to say
Thanks to Norman for an idea and testing.
Qphoria, thanks for report.
Norman has told me about that error and it should be fixed already.
And thanks for the vQmod script.
I would definitely try it
UPD
I've downloaded archive from the extensions-area and found a nuance, which may lead to confusion:
there is a fix (~554 line in READMEs) for an error described above:
Code: Select all
================= ~1274 line =================
Find:
===
$this->data['column_product'] = $this->language->get('column_product');
===
Add before:
=======
$this->data['glance_order'] = $this->language->get('glance_order');
=======
But
for this ~time-of-editing there are will NO such line-number and row.
We need that fix (
a missed row only) be placed on a ~592 line in READMEs:
Code: Select all
/* webme - Orders AT-A-GLANCE - mod - start */
public function webme_getOrderProducts() {
$this->data['orderID'] = $this->request->get['order_id'];
$this->data['products'] = array();
$this->load->model('sale/order');
$order_info = $this->model_sale_order->getOrder($this->data['orderID']);
if ($order_info) {
$this->load->language('sale/order');
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['text_wait'] = $this->language->get('text_wait');
// here it is - the missed row start
$this->data['glance_order'] = $this->language->get('glance_order');
// here it is - the missed row end
$this->data['column_product'] = $this->language->get('column_product');
So, Norman, could you change the readme files and re-upload archive please?
Thanks