I'm using the sliderProducts plugin and want to display (much) larger thumbnails. Currently it's using the default thumbnail size I have set on productpage.
How do I display the original size of the picture in this slider?
This is a shop EXT version. I can give you only a short description. Slider uses getDefaultImage function. You can change the function or do a copy with the new name. You can change the iSizeValue1 to iSizeValue2 in new function. SizeValue2 must be 150 or greater.(180,200 etc) In addition, in several places in style.css add max-height: 150px; max-width: 150px
Thanks, I notice the getDefaultImage function code. You know how to get original size of the image in stead of adding/changing (default) thumbnail image-size? I mean, what to add in stead of 'getDefaultImage'
Why don't you create a copy of getDefaultImage function? Name it: DefaultImageSlider. Call to thi function in function listProductsSlider (core/products.php) Do not want to use second thumbnail? Ok, in function DefaultImageSlider delete this: $this->aImagesDefault[$iLinkType][$iLink]['iSizeValue2'].
Thanks. When I set new default thumbnail image size in general.php, I must save product first in order to create thumbnail. Because I want to use different size for product and for slider, I prefer to use the original image size in this plugin (core/products.php).