Quote:
Originally Posted by RichieRich
If images are set to file system, and you have display images in bestsellers list on, the images are still database images which load not file system images.
|
I found the same problem. In
include/func/func.product.php around line 430 change:
PHP Code:
if ($config["Images"]["thumbnails_location"] == "FS") {
to:
PHP Code:
if (1 || $config["Images"]["thumbnails_location"] == "FS") {
This forces the use of FS for thumbnails.
