Most modules use the thumb size for the position of the home page, but have static image sizes encoded for left / right columns.
You have two options ... Either switch the template to pull the size of the sketch: Change /catalog/view/theme//module/.tpl
(replace your theme, if you have one, and with bestseller.tpl and / or featured.tpl)
replace $ product ['image'] with $ product ['thumb']
Although your thumbnails can be enlarged for your columns left / right ...
Another option is to edit the controller and specify the size ...
Modify / catalog / controller / module / .php (again either bestseller.php or featured.php)
At 1.4.9.x around line 67-68 you will find:
$this->data['products'][] = array( // From line 58 .... .... // Line 67 'image' => $this->model_tool_image->resize($image, 38, 38), 'thumb' => $this->model_tool_image->resize($image, $this->config->get('config_image_product_width'), $this->config->get('config_image_product_height')),
Just decide whether you want to rigidly set the new image size (in this example, 38x38) or associate the size of the "image" with the size of the thumbnails .....
if you hardcode it, just set "38, 38" ...
If you want to associate it with the thumbnail size, just copy the value from 'thumb'
CarpeNoctumDC
source share