Opencart 2.x Modullerde Ürün Marka Adı Ve Linki Ekleme Modifikasyonu Kurulumu
Dosyamızı Açalım : catalog/view/theme/senin-teman/template/product/
category.tpl
Bulalım :
Alt Satıra Ekleyelim :
Dosyamızı AÇalım : catalog/controller/product/
category.php
Bulalım:
'product_id' => $result['product_id'],
Alt Satıra Ekleyelim :
'manufacturer' => $result['manufacturer'],
'manufacturerhref' => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $result['manufacturer_id']),
Dosyamızı Açalım : catalog/view/theme/senin-teman/template/module/
feurated.tpl, latest.tpl, special.tpl, bestseller.tpl
Bulalım :
Alt Satıra Ekleyelim :
Dosyamızı Açalım : catalog/controller/module/
featured.php
Bulalım :
'name' => $product_info['name'],
Alt Satıra Ekleyelim:
'manufacturer' => $product_info['manufacturer'],
'manufacturerhref' => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $product_info['manufacturer_id']),
Dosyamızı Açalım : catalog/controller/module/
latest.php, latest.php, bestseller.php
Bulalım:
'product_id' => $result['product_id'],
Alt Satıra Ekleyelim :
'manufacturer' => $result['manufacturer'],
'manufacturerhref' => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $result['manufacturer_id']),
Kurulum bukadar
Demo : oc22test
Kaynak : e-ticaretdersleri