I would like to add Image thumbnails for every main category. I have found this thread dealing with images for subcategories: http://forum.opencart.com/viewtopic.php ... 60#p268278
My problem is, that I don't know how to "load" thumbnails from database. I added a new column and filled it with data from PHPMyAdmin, but where to edit the sql select to load the column while loading other categories columns?
Code: Select all
ALTER TABLE `category` ADD `thumbnail` VARCHAR( 255 ) NOT NULL
Code: Select all
<modification>
<id>Category Thumbnails Add Vqmod Script</id>
<version>1.0a</version>
<vqmver>2.4.1</vqmver>
<file name="catalog/controller/product/category.php">
<operation>
<search position="after"><![CDATA[
foreach ($results as $result) {
]]></search>
<add><![CDATA[
print_r($result);
]]></add>
</operation>
</file>
</modification>