slider - How to get high quality of images in Opencart's slideshow -


i using original slideshow in opencart. when upload images quality doesn't vary, in slider qualities lower original images.

to want, you'll need upload banners @ right size , change code doesn't resize it. open /catalog/controller/module/slideshow.php , find code

'image' => $this->model_tool_image->resize($result['image'], $setting['width'], $setting['height']) 

change to

'image' => https_server . 'image/' . $result['image'] 

note assumes recent version of opencart - older versions better off using

'image' => https_image . $result['image'] 

Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -