Dear Kirill Khatkevich
with theme 1, please open modules\mod_sj_vm_slickslider\tmpl\theme1.php file, find this code:
<img src="<?php echo Ytools::resize($item['image'], $big_image_config);?>" alt="<?php echo $item['link'];?>" title="<?php echo YTools::truncate($item['title'], $options->limit_title)."</br>";
if((int)$options->show_price == 1){
if($item['price']['discountAmount'] > 0){
$price_before_discount = $item['price']['salesPrice'] + $item['price']['discountAmount'] ;
echo "<span style='color:".$options->price_color.";font-size: 20px; font-family: Georgia;'>";
echo "<s>". $vm_currency_display->priceDisplay($price_before_discount)."</s> ";
echo "</span>";
}
echo "<span style='color:".$options->price_color_salesPrice.";font-size: 20px; font-family: Georgia;'>";
echo $vm_currency_display->priceDisplay($item['price']['salesPrice']);
echo "</span>";
}
?>"
width="<?php echo $options->big_item_image_width?>px;" height="<?php echo $options->big_item_image_height?>px;"/>
and change to:
<img src="<?php echo Ytools::resize($item['image'], $big_image_config);?>" alt="<?php echo $item['link'];?>" title="<?php echo YTools::truncate($item['title'], $options->limit_title)?>"
width="<?php echo $options->big_item_image_width?>px;" height="<?php echo $options->big_item_image_height?>px;"/>