Установил очень мне нужный модуль Product Display Setting http://www.opencart.com/index.php?route=extension/extension/info&extension_id=5169&filter_search=model&filter_license=0&filter_download_id=27 для вывода производителя в списке товаров, но вот почему-то он ставит пустую строчку в самом начале <body> ошибок при этом не пишет, ни в error.log ни в vqmod log помогите разобраться! В xml добавил
<file name="catalog/controller/product/all.php">
<operation>
<search position="before"><![CDATA[if ($this->config->get('config_review_status')) {]]></search>
<add><![CDATA[if ($product_total != 0) {
if ($result['quantity'] <= 0) {
$rstock = $result['stock_status'];
} elseif ($this->config->get('config_stock_display')) {
$rstock = $result['quantity'];
} else {
$rstock = $this->language->get('pds_instock');
}}]]></add>
</operation>
<operation>
<search position="after"><![CDATA['name' => $result['name'],]]></search>
<add><![CDATA[//produc display settings
'sku' => $result['sku'],
'model' => $result['model'],
'brand' => $result['manufacturer'],
'location' => $result['location'],
'upc' => $result['upc'],
'stock' => $rstock,
'brand_url' => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $result['manufacturer_id']),
//end pds]]></add>
</operation>
<operation>
<search position="after"><![CDATA[$this->data['text_grid'] = $this->language->get('text_grid');]]></search>
<add><![CDATA[$this->language->load('product/pds');
$this->data['pds_sku'] = $this->language->get('pds_sku');
$this->data['pds_upc'] = $this->language->get('pds_upc');
$this->data['pds_location'] = $this->language->get('pds_location');
$this->data['pds_model'] = $this->language->get('pds_model');
$this->data['pds_brand'] = $this->language->get('pds_brand');
$this->data['pds_stock'] = $this->language->get('pds_stock');]]></add>
</operation>
</file>
Для отображения в products/all, но пустая строчка на всех страницах сайта.
Причем например на странице не затрагиваемой модулем например index.php?route=information/contact все нормально, а на других даже <head> пустой.