В шаблоне уже есть патч для filterpro
если вёрстка всё равно съезжает, откройте файл модуля catalog/controller/module/filterpro.php
найдите выражение (ctr+F)
'special' => $special,
после него впишите
'quickview' => $this->url->link('product/quickview', 'product_id=' . $result['product_id']),
'saving' => round((($result['price'] - $result['special'])/($result['price'] + 0.01))*100, 0),
'dop_img' => $dop_img,
Найдите выражение
if ($result['image']) {
перед ним вставьте
$results_img = $this->model_catalog_product->getProductImages($result['product_id']);
$dop_img = array();
foreach ($results_img as $result_img) {
if ($result_img['image']) {
$image_dop = $this->model_tool_image->resize($result_img['image'], $this->config->get('config_image_product_width'), $this->config->get('config_image_product_height'));
} else {
$image_dop = false;
}
$dop_img[] = $image_dop;
}
файл vqmod/xml/mattimeo_for_filterpro.xml удалите